{ "$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": "\nThe time when the configuration revision was created.
" } ] }, "Description": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "description" }, "description": "\nThe description of the configuration revision.
" } ] }, "Revision": { "allOf": [ { "$ref": "#/components/schemas/__long" }, { "xml": { "name": "revision" }, "description": "\nThe revision number.
" } ] } }, "required": [ "Revision", "CreationTime" ] }