Amazon IoT Core · Schema
DescribeProvisioningTemplateVersionResponse
DescribeProvisioningTemplateVersionResponse schema
Device ManagementIoTMQTTMessage Routing
Properties
| Name | Type | Description |
|---|---|---|
| versionId | object | |
| creationDate | object | |
| templateBody | object | |
| isDefaultVersion | object |
JSON Schema
{
"$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-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."
}
]
}
}
}