Tags for a job.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-panorama/refs/heads/main/json-schema/openapi-job-resource-tags-schema.json", "title": "JobResourceTags", "description": "Tags for a job.", "type": "object", "properties": { "ResourceType": { "allOf": [ { "$ref": "#/components/schemas/JobResourceType" }, { "description": "The job's type." } ] }, "Tags": { "allOf": [ { "$ref": "#/components/schemas/TagMap" }, { "description": "The job's tags." } ] } }, "required": [ "ResourceType", "Tags" ] }