Module Values_2.PutSchemaVersionMetadataInputSource

Puts the metadata key value pair for a specified schema version ID. A maximum of 10 key value pairs will be allowed per schema version. They can be added over one or more calls.

Sourcetype nonrec t = {
  1. schemaId : Values_0.SchemaId.t option;
    (*

    The unique ID for the schema.

    *)
  2. schemaVersionNumber : SchemaVersionNumber.t option;
    (*

    The version number of the schema.

    *)
  3. schemaVersionId : Values_0.SchemaVersionIdString.t option;
    (*

    The unique version ID of the schema version.

    *)
  4. metadataKeyValue : MetadataKeyValuePair.t;
    (*

    The metadata key's corresponding value.

    *)
}
Sourceval context_ : string
Sourceval make : ?schemaId:??? -> ?schemaVersionNumber:??? -> ?schemaVersionId:??? -> metadataKeyValue:MetadataKeyValuePair.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.SchemaVersionIdString.t | `Structure of (string * [> `Boolean of LatestSchemaVersionBoolean.t | `Long of Values_0.VersionLongNumber.t | `String of string ]) list ]) 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