{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-device-management/refs/heads/main/json-schema/iot-device-management-describe-provisioning-template-version-response-schema.json", "title": "DescribeProvisioningTemplateVersionResponse", "description": "DescribeProvisioningTemplateVersionResponse schema", "type": "object", "properties": { "versionId": { "allOf": [ { "$ref": "#/components/schemas/TemplateVersionId" }, { "description": "The provisioning template version ID." } ] }, "creationDate": { "allOf": [ { "$ref": "#/components/schemas/DateType" }, { "description": "The date when the provisioning template version was created." } ] }, "templateBody": { "allOf": [ { "$ref": "#/components/schemas/TemplateBody" }, { "description": "The JSON formatted contents of the provisioning template version." } ] }, "isDefaultVersion": { "allOf": [ { "$ref": "#/components/schemas/IsDefaultVersion" }, { "description": "True if the provisioning template version is the default version." } ] } } }