{ "$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-import-signal-catalog-request-schema.json", "title": "ImportSignalCatalogRequest", "description": "ImportSignalCatalogRequest schema", "type": "object", "properties": { "name": { "allOf": [ { "$ref": "#/components/schemas/resourceName" }, { "description": "The name of the signal catalog to import." } ] }, "description": { "allOf": [ { "$ref": "#/components/schemas/description" }, { "description": " A brief description of the signal catalog. " } ] }, "vss": { "allOf": [ { "$ref": "#/components/schemas/FormattedVss" }, { "description": "The contents of the Vehicle Signal Specification (VSS) configuration. VSS is a precise language used to describe and model signals in vehicle networks." } ] }, "tags": { "allOf": [ { "$ref": "#/components/schemas/TagList" }, { "description": "Metadata that can be used to manage the signal catalog." } ] } }, "required": [ "name" ] }