{
  "name": "JS eval 加解密",
  "slug": "js_eval",
  "description": "在线 JavaScript eval 函数加密/解密工具",
  "api_url": "/api/js_eval/",
  "ui_url": "/tools/js_eval/",
  "schema_url": "/tools/js_eval/schema.json",
  "endpoint": "POST /api/js_eval/",
  "request_schema": {
    "type": "object",
    "required": [
      "action",
      "text"
    ],
    "properties": {
      "action": {
        "type": "string",
        "enum": [
          "decode",
          "format"
        ]
      },
      "text": {
        "type": "string"
      }
    }
  }
}