signalCatalogSummaries

signalCatalogSummaries schema

AutomotiveConnected VehiclesIoTTelematicsVehicle Data
View JSON Schema on GitHub

JSON Schema

iot-fleetwise-signal-catalog-summaries-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-fleetwise/refs/heads/main/json-schema/iot-fleetwise-signal-catalog-summaries-schema.json",
  "title": "signalCatalogSummaries",
  "description": "signalCatalogSummaries schema",
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "name": {
        "allOf": [
          {
            "$ref": "#/components/schemas/string"
          },
          {
            "description": "The name of the signal catalog."
          }
        ]
      },
      "arn": {
        "allOf": [
          {
            "$ref": "#/components/schemas/arn"
          },
          {
            "description": "The Amazon Resource Name (ARN) of the signal catalog."
          }
        ]
      },
      "creationTime": {
        "allOf": [
          {
            "$ref": "#/components/schemas/timestamp"
          },
          {
            "description": "The time the signal catalog was created in seconds since epoch (January 1, 1970 at midnight UTC time). "
          }
        ]
      },
      "lastModificationTime": {
        "allOf": [
          {
            "$ref": "#/components/schemas/timestamp"
          },
          {
            "description": "The time the signal catalog was last updated in seconds since epoch (January 1, 1970 at midnight UTC time). "
          }
        ]
      }
    },
    "description": "Information about a collection of standardized signals, which can be attributes, branches, sensors, or actuators."
  }
}