{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-core/refs/heads/main/json-schema/iot-core-create-provisioning-template-version-response-schema.json", "title": "CreateProvisioningTemplateVersionResponse", "description": "CreateProvisioningTemplateVersionResponse schema", "type": "object", "properties": { "templateArn": { "allOf": [ { "$ref": "#/components/schemas/TemplateArn" }, { "description": "The ARN that identifies the provisioning template." } ] }, "templateName": { "allOf": [ { "$ref": "#/components/schemas/TemplateName" }, { "description": "The name of the provisioning template." } ] }, "versionId": { "allOf": [ { "$ref": "#/components/schemas/TemplateVersionId" }, { "description": "The version of the provisioning template." } ] }, "isDefaultVersion": { "allOf": [ { "$ref": "#/components/schemas/IsDefaultVersion" }, { "description": "True if the provisioning template version is the default version, otherwise false." } ] } } }