{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://zeons.org/Forge/SDK/153/153.1/schemas/route-request.schema.json",
  "title": "ZEON Route Request",
  "type": "object",
  "required": [
    "id",
    "text"
  ],
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1
    },
    "text": {
      "type": "string",
      "minLength": 1
    },
    "language": {
      "type": "string",
      "default": "fr"
    },
    "confidentiality": {
      "enum": [
        "public",
        "internal",
        "confidential"
      ],
      "default": "public"
    },
    "required_capabilities": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "preferred_destination_types": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "require_human_review": {
      "type": "boolean",
      "default": false
    },
    "metadata": {
      "type": "object"
    }
  },
  "additionalProperties": false
}