public SchemaRegistryProvider(ISchemaConfiguration[] schemaConfigurations, ICustomPropertyConfigurationProvider customPropertyConfigurationProvider)
 {
     schemaRegistry = new SchemaRegistry();
     foreach (var schemaConfiguration in schemaConfigurations.OrderBy(x => x.Description.SchemaName))
     {
         schemaRegistry.Add(schemaConfiguration.GetSchema(customPropertyConfigurationProvider));
     }
 }