{
  "name": "CRC32 校验",
  "slug": "crc32",
  "description": "在线 CRC32 循环冗余校验值计算工具",
  "api_url": "/api/crc32/",
  "ui_url": "/tools/crc32/",
  "schema_url": "/tools/crc32/schema.json",
  "endpoint": "POST /api/crc32/",
  "request_schema": {
    "type": "object",
    "required": [
      "text"
    ],
    "properties": {
      "text": {
        "type": "string"
      },
      "inputFormat": {
        "type": "string",
        "enum": [
          "utf8",
          "hex"
        ],
        "default": "utf8"
      }
    }
  }
}