{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-msk/refs/heads/main/json-schema/msk-api-configuration-revision-schema.json", "title": "ConfigurationRevision", "description": "\n

Describes a configuration revision.

", "type": "object", "properties": { "CreationTime": { "allOf": [ { "$ref": "#/components/schemas/__timestampIso8601" }, { "xml": { "name": "creationTime" }, "description": "\n

The time when the configuration revision was created.

" } ] }, "Description": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "description" }, "description": "\n

The description of the configuration revision.

" } ] }, "Revision": { "allOf": [ { "$ref": "#/components/schemas/__long" }, { "xml": { "name": "revision" }, "description": "\n

The revision number.

" } ] } }, "required": [ "Revision", "CreationTime" ] }