Application Discovery Service Filter Structure

Filter schema from Amazon Application Discovery Service API

Type: object Properties: 3 Required: 3
Amazon Application Discovery ServiceMigrationDiscoveryInfrastructure

Application Discovery Service Filter Structure is a JSON Structure definition published by Amazon Application Discovery Service, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name values condition

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

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "Filter schema from Amazon Application Discovery Service API",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the filter.",
      "example": "hostName"
    },
    "values": {
      "type": "array",
      "description": "A string value on which to filter.",
      "items": {
        "type": "string"
      },
      "example": [
        "server-01.example.com"
      ]
    },
    "condition": {
      "type": "string",
      "description": "A conditional operator. The following operators are valid \u2014 EQUALS, NOT_EQUALS, CONTAINS, NOT_CONTAINS.",
      "enum": [
        "EQUALS",
        "NOT_EQUALS",
        "CONTAINS",
        "NOT_CONTAINS"
      ],
      "example": "EQUALS"
    }
  },
  "required": [
    "name",
    "values",
    "condition"
  ],
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-application-discovery-service/refs/heads/main/json-structure/application-discovery-service-filter-structure.json"
}