{
  "name": "24 字加密",
  "slug": "pass24",
  "description": "通过 24 个中文字符对字符串进行加密/解密的趣味工具",
  "api_url": "/api/pass24/",
  "ui_url": "/tools/pass24/",
  "schema_url": "/tools/pass24/schema.json",
  "endpoint": "POST /api/pass24/",
  "request_schema": {
    "type": "object",
    "required": [
      "action",
      "text",
      "key"
    ],
    "properties": {
      "action": {
        "type": "string",
        "enum": [
          "encrypt",
          "decrypt"
        ]
      },
      "text": {
        "type": "string"
      },
      "key": {
        "type": "string",
        "minLength": 24,
        "maxLength": 24
      }
    }
  }
}