Amazon Incident Manager · JSON Structure

Incident Manager Item Identifier Structure

Details and type of a related item.

Type: object Properties: 2 Required: 2
AutomationDevOpsIncident ManagementOperations

ItemIdentifier is a JSON Structure definition published by Amazon Incident Manager, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

type value

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-incident-manager/refs/heads/main/json-structure/incident-manager-item-identifier-structure.json",
  "name": "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"
  ]
}