{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-fleetwise/refs/heads/main/json-structure/iot-fleetwise-update-model-manifest-request-structure.json",
"name": "UpdateModelManifestRequest",
"description": "UpdateModelManifestRequest schema",
"type": "object",
"properties": {
"name": {
"allOf": [
{
"$ref": "#/components/schemas/resourceName"
},
{
"description": " The name of the vehicle model to update. "
}
]
},
"description": {
"allOf": [
{
"$ref": "#/components/schemas/description"
},
{
"description": " A brief description of the vehicle model. "
}
]
},
"nodesToAdd": {
"allOf": [
{
"$ref": "#/components/schemas/NodePaths"
},
{
"description": " A list of fullyQualifiedName of nodes, which are a general abstraction of signals, to add to the vehicle model. "
}
]
},
"nodesToRemove": {
"allOf": [
{
"$ref": "#/components/schemas/NodePaths"
},
{
"description": " A list of fullyQualifiedName of nodes, which are a general abstraction of signals, to remove from the vehicle model. "
}
]
},
"status": {
"allOf": [
{
"$ref": "#/components/schemas/ManifestStatus"
},
{
"description": " The state of the vehicle model. If the status is ACTIVE, the vehicle model can't be edited. If the status is DRAFT, you can edit the vehicle model. "
}
]
}
},
"required": [
"name"
]
}