{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "projectId": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200,
      "description": "Identifier of the project returned by its create or list operation."
    },
    "status": {
      "description": "Lifecycle status filter or requested status; this is separate from observation state.",
      "type": "string",
      "enum": [
        "all",
        "active",
        "paused"
      ]
    },
    "limit": {
      "description": "Maximum rows in this page or bounded report; subject to the schema maximum.",
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "comparison": {
      "description": "The comparison value; allowed values and bounds are specified in this schema.",
      "type": "object",
      "properties": {
        "setId": {
          "type": "string",
          "minLength": 1,
          "maxLength": 200
        },
        "revision": {
          "type": "integer",
          "exclusiveMinimum": 0,
          "maximum": 9007199254740991
        },
        "inventoryIds": {
          "minItems": 1,
          "maxItems": 11,
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1,
            "maxLength": 200
          }
        }
      },
      "required": [
        "setId",
        "revision",
        "inventoryIds"
      ],
      "additionalProperties": false
    },
    "indexSourceKey": {
      "description": "The index source key value; allowed values and bounds are specified in this schema.",
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    },
    "dimension": {
      "type": "string",
      "enum": [
        "source_host",
        "source_tld",
        "watch_created_month",
        "anchor",
        "anchor_term",
        "landing_url",
        "rel_set",
        "link_nofollow",
        "ugc",
        "sponsored",
        "page_nofollow",
        "link_type",
        "language",
        "google_index"
      ],
      "description": "The dimension value; allowed values and bounds are specified in this schema."
    },
    "format": {
      "type": "string",
      "enum": [
        "json",
        "csv"
      ],
      "description": "The format value; allowed values and bounds are specified in this schema."
    }
  },
  "required": [
    "projectId",
    "dimension",
    "format"
  ],
  "additionalProperties": false
}
