Details and type of a related item.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-incident-manager/refs/heads/main/json-schema/incident-manager-item-identifier-schema.json", "title": "ItemIdentifier", "description": "Details and type of a related item.", "type": "object", "properties": { "type": { "allOf": [ { "$ref": "#/components/schemas/ItemType" }, { "description": "The type of related item. " } ] }, "value": { "allOf": [ { "$ref": "#/components/schemas/ItemValue" }, { "description": "Details about the related item." } ] } }, "required": [ "type", "value" ] }