TagResourceRequest

TagResourceRequest schema

AutomationDevOpsIncident ManagementOperations

Properties

Name Type Description
tags object
View JSON Schema on GitHub

JSON Schema

incident-manager-tag-resource-request-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-tag-resource-request-schema.json",
  "title": "TagResourceRequest",
  "description": "TagResourceRequest schema",
  "type": "object",
  "properties": {
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "description": "A list of tags to add to the response plan."
        }
      ]
    }
  },
  "required": [
    "tags"
  ]
}