Amazon Incident Manager · JSON Structure

Incident Manager Filter List Structure

FilterList schema

Type: array Properties: 0
AutomationDevOpsIncident ManagementOperations

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

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-filter-list-structure.json",
  "name": "FilterList",
  "description": "FilterList schema",
  "type": "array",
  "items": {
    "type": "object",
    "required": [
      "condition",
      "key"
    ],
    "properties": {
      "condition": {
        "allOf": [
          {
            "$ref": "#/components/schemas/Condition"
          },
          {
            "description": "The condition accepts before or after a specified time, equal to a string, or equal to an integer."
          }
        ]
      },
      "key": {
        "allOf": [
          {
            "$ref": "#/components/schemas/FilterKeyString"
          },
          {
            "description": "The key that you're filtering on."
          }
        ]
      }
    },
    "description": "Filter the selection by using a condition."
  }
}