{
  "$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."
    },
    "urls": {
      "minItems": 1,
      "maxItems": 200,
      "type": "array",
      "items": {
        "type": "string",
        "maxLength": 2048
      },
      "description": "The urls value; allowed values and bounds are specified in this schema."
    },
    "context": {
      "description": "The context value; allowed values and bounds are specified in this schema.",
      "type": "string",
      "enum": [
        "point",
        "import"
      ]
    }
  },
  "required": [
    "projectId",
    "urls"
  ],
  "additionalProperties": false
}
