SignalCatalogSummary

Information about a collection of standardized signals, which can be attributes, branches, sensors, or actuators.

AutomotiveConnected VehiclesIoTTelematicsVehicle Data

Properties

Name Type Description
name object
arn object
creationTime object
lastModificationTime object
View JSON Schema on GitHub

JSON Schema

iot-fleetwise-signal-catalog-summary-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-summary-schema.json",
  "title": "SignalCatalogSummary",
  "description": "Information about a collection of standardized signals, which can be attributes, branches, sensors, or actuators.",
  "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). "
        }
      ]
    }
  }
}