AssetCompositeModel

Contains information about a composite model in an asset. This object contains the asset's properties that you define in the composite model.

Asset ManagementIndustrial IoTIoTTime Series Data

Properties

Name Type Description
name object
description object
type object
properties object The asset properties that this composite model defines.
id object
View JSON Schema on GitHub

JSON Schema

iot-sitewise-asset-composite-model-schema.json Raw ↑
{
  "$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-composite-model-schema.json",
  "title": "AssetCompositeModel",
  "description": "Contains information about a composite model in an asset. This object contains the asset's properties that you define in the composite model.",
  "type": "object",
  "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 <code>AWS/ALARM</code>."
        }
      ]
    },
    "properties": {
      "description": "The asset properties that this composite model defines."
    },
    "id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ID"
        },
        {
          "description": " The ID of the asset composite model. "
        }
      ]
    }
  },
  "required": [
    "name",
    "type",
    "properties"
  ]
}