Amazon IoT SiteWise · JSON Structure

Iot Sitewise Asset Model Composite Model Definition Structure

Contains a composite model definition in an asset model. This composite model definition is applied to all assets created from the asset model.

Type: object Properties: 4 Required: 2
Asset ManagementIndustrial IoTIoTTime Series Data

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

Properties

name description type properties

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-model-composite-model-definition-structure.json",
  "name": "AssetModelCompositeModelDefinition",
  "description": "Contains a composite model definition in an asset model. This composite model definition is applied to all assets created from the asset 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 property definitions for this composite model."
    }
  },
  "required": [
    "name",
    "type"
  ]
}