{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "minLength": 3,
      "maxLength": 254,
      "description": "Email address to bind an invitation to; Linktrail does not send the invitation."
    },
    "role": {
      "description": "Workspace access role; cannot exceed the acting member’s authority.",
      "type": "string",
      "enum": [
        "admin",
        "member",
        "viewer"
      ],
      "default": "member"
    },
    "projectIds": {
      "description": "Accessible project IDs. Where nullable, null grants all projects.",
      "minItems": 1,
      "maxItems": 100,
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1,
        "maxLength": 200
      }
    }
  },
  "required": [
    "email"
  ],
  "additionalProperties": false
}
