{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200,
      "description": "Human-readable name for the resource being created or updated."
    },
    "domain": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2048,
      "description": "Project domain name, for example example.com."
    },
    "idempotencyKey": {
      "description": "Caller-generated key reused only for retries of the same operation and arguments in this workspace.",
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    }
  },
  "required": [
    "name",
    "domain"
  ],
  "additionalProperties": false
}
