AttributeValueList

Use the AttributeValueList to filter by string or integer values.

AutomationDevOpsIncident ManagementOperations

Properties

Name Type Description
integerValues object
stringValues object
View JSON Schema on GitHub

JSON Schema

incident-manager-attribute-value-list-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-attribute-value-list-schema.json",
  "title": "AttributeValueList",
  "description": "Use the AttributeValueList to filter by string or integer values.",
  "type": "object",
  "properties": {
    "integerValues": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IntegerList"
        },
        {
          "description": "The list of integer values that the filter matches."
        }
      ]
    },
    "stringValues": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StringList"
        },
        {
          "description": "The list of string values that the filter matches."
        }
      ]
    }
  }
}