{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mq/refs/heads/main/json-schema/mq-api-configuration-revision-schema.json", "title": "ConfigurationRevision", "description": "Returns information about the specified configuration revision.", "type": "object", "properties": { "Created": { "allOf": [ { "$ref": "#/components/schemas/__timestampIso8601" }, { "xml": { "name": "created" }, "description": "Required. The date and time of the configuration revision." } ] }, "Description": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "description" }, "description": "The description of the configuration revision." } ] }, "Revision": { "allOf": [ { "$ref": "#/components/schemas/__integer" }, { "xml": { "name": "revision" }, "description": "Required. The revision number of the configuration." } ] } }, "required": [ "Revision", "Created" ] }