{ "$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-describe-provisioning-template-response-schema.json", "title": "DescribeProvisioningTemplateResponse", "description": "DescribeProvisioningTemplateResponse schema", "type": "object", "properties": { "templateArn": { "allOf": [ { "$ref": "#/components/schemas/TemplateArn" }, { "description": "The ARN of the provisioning template." } ] }, "templateName": { "allOf": [ { "$ref": "#/components/schemas/TemplateName" }, { "description": "The name of the provisioning template." } ] }, "description": { "allOf": [ { "$ref": "#/components/schemas/TemplateDescription" }, { "description": "The description of the provisioning template." } ] }, "creationDate": { "allOf": [ { "$ref": "#/components/schemas/DateType" }, { "description": "The date when the provisioning template was created." } ] }, "lastModifiedDate": { "allOf": [ { "$ref": "#/components/schemas/DateType" }, { "description": "The date when the provisioning template was last modified." } ] }, "defaultVersionId": { "allOf": [ { "$ref": "#/components/schemas/TemplateVersionId" }, { "description": "The default fleet template version ID." } ] }, "templateBody": { "allOf": [ { "$ref": "#/components/schemas/TemplateBody" }, { "description": "The JSON formatted contents of the provisioning template." } ] }, "enabled": { "allOf": [ { "$ref": "#/components/schemas/Enabled" }, { "description": "True if the provisioning template is enabled, otherwise false." } ] }, "provisioningRoleArn": { "allOf": [ { "$ref": "#/components/schemas/RoleArn" }, { "description": "The ARN of the role associated with the provisioning template. This IoT role grants permission to provision a device." } ] }, "preProvisioningHook": { "allOf": [ { "$ref": "#/components/schemas/ProvisioningHook" }, { "description": "Gets information about a pre-provisioned hook." } ] }, "type": { "allOf": [ { "$ref": "#/components/schemas/TemplateType" }, { "description": "The type you define in a provisioning template. You can create a template with only one type. You can't change the template type after its creation. The default value is FLEET_PROVISIONING. For more information about provisioning template, see: Provisioning template. " } ] } } }