Module Values.UpdateSchemaRequestSource

Updates the schema definition Inactive schemas will be deleted after two years.

Sourcetype nonrec t = {
  1. clientTokenId : string option;
    (*

    The ID of the client token.

    *)
  2. content : string option;
    (*

    The source of the schema definition.

    *)
  3. description : string option;
    (*

    The description of the schema.

    *)
  4. registryName : string;
    (*

    The name of the registry.

    *)
  5. schemaName : string;
    (*

    The name of the schema.

    *)
  6. type_ : Type.t option;
    (*

    The schema type for the events schema.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientTokenId:??? -> ?content:??? -> ?description:??? -> ?type_:??? -> registryName:string -> schemaName:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of string ]) 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