{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "projectId": {
      "description": "Identifier of the project returned by its create or list operation.",
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "status": {
      "description": "Lifecycle status filter or requested status; this is separate from observation state.",
      "type": "string",
      "enum": [
        "all",
        "active",
        "paused"
      ],
      "default": "all"
    },
    "limit": {
      "description": "Maximum rows in this page or bounded report; subject to the schema maximum.",
      "type": "integer",
      "minimum": 1,
      "maximum": 100,
      "default": 50
    }
  },
  "additionalProperties": false
}
