ItemIdentifier

Details and type of a related item.

AutomationDevOpsIncident ManagementOperations

Properties

Name Type Description
type object
value object
View JSON Schema on GitHub

JSON Schema

incident-manager-item-identifier-schema.json Raw ↑
{
  "$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"
  ]
}