Amazon Incident Manager · JSON Structure

Incident Manager Related Items Update Structure

Details about the related item you're adding.

Type: object Properties: 2
AutomationDevOpsIncident ManagementOperations

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

Properties

itemToAdd itemToRemove

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-related-items-update-structure.json",
  "name": "RelatedItemsUpdate",
  "description": "Details about the related item you're adding.",
  "type": "object",
  "properties": {
    "itemToAdd": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RelatedItem"
        },
        {
          "description": "Details about the related item you're adding."
        }
      ]
    },
    "itemToRemove": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ItemIdentifier"
        },
        {
          "description": "Details about the related item you're deleting."
        }
      ]
    }
  }
}