Module Values_0.CheckSchemaVersionValidityInputSource

Validates the supplied schema. This call has no side effects, it simply validates using the supplied schema using DataFormat as the format. Since it does not take a schema set name, no compatibility checks are performed.

Sourcetype nonrec t = {
  1. dataFormat : DataFormat.t;
    (*

    The data format of the schema definition. Currently AVRO, JSON and PROTOBUF are supported.

    *)
  2. schemaDefinition : SchemaDefinitionString.t;
    (*

    The definition of the schema that has to be validated.

    *)
}
Sourceval context_ : string
Sourceval make : dataFormat:DataFormat.t -> schemaDefinition:SchemaDefinitionString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SchemaDefinitionString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t