Amazon IoT SiteWise · JSON Structure

Iot Sitewise Asset Composite Model Structure

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: 5 Required: 3
Asset ManagementIndustrial IoTIoTTime Series Data

AssetCompositeModel is a JSON Structure definition published by Amazon IoT SiteWise, describing 5 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name description type properties id

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-sitewise/refs/heads/main/json-structure/iot-sitewise-asset-composite-model-structure.json",
  "name": "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"
  ]
}