{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-sitewise/refs/heads/main/json-schema/iot-sitewise-asset-model-composite-models-schema.json", "title": "AssetModelCompositeModels", "description": "AssetModelCompositeModels schema", "type": "array", "items": { "type": "object", "required": [ "name", "type" ], "properties": { "name": { "allOf": [ { "$ref": "#/components/schemas/Name" }, { "description": "The name of the composite model." } ] }, "description": { "allOf": [ { "$ref": "#/components/schemas/Description" }, { "description": "The description of the composite model." } ] }, "type": { "allOf": [ { "$ref": "#/components/schemas/Name" }, { "description": "The type of the composite model. For alarm composite models, this type is AWS/ALARM." } ] }, "properties": { "description": "The asset property definitions for this composite model." }, "id": { "allOf": [ { "$ref": "#/components/schemas/ID" }, { "description": " The ID of the asset model composite model. " } ] } }, "description": "Contains information about a composite model in an asset model. This object contains the asset property definitions that you define in the composite model." } }