{
  "$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": [
        "proposed",
        "active",
        "rejected"
      ]
    },
    "limit": {
      "description": "Maximum rows in this page or bounded report; subject to the schema maximum.",
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "cursor": {
      "description": "Opaque continuation returned by this same listing; omit for the first page.",
      "type": "string",
      "maxLength": 4096
    }
  },
  "required": [
    "projectId"
  ],
  "additionalProperties": false
}
