{
  "openapi": "3.0.3",
  "info": {
    "title": "OpenAPI 接口 - 无状态会员有效性校验（场景A）",
    "version": "1.0.0",
    "description": "OpenAPI 接口相关接口文档"
  },
  "paths": {
    "/openapi/stateless-members/valid-check": {
      "post": {
        "summary": "无状态会员有效性校验（场景A）",
        "description": "场景A：仅校验无状态会员是否有效（未过期），不校验会员类型与系统的支持关系。适用于第三方只需确认会员是否开通且未到期的简单场景。",
        "parameters": [
          {
            "name": "X-Member-Key",
            "in": "header",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "会员密钥令牌（混合JWT加密，payload.data = secretKey）"
          },
          {
            "name": "X-Site",
            "in": "header",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "站点标识"
          },
          {
            "name": "X-System-Code",
            "in": "header",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "系统编码（用于路由到正确数据库，本接口不校验系统-会员类型兼容性）"
          }
        ],
        "responses": {
          "200": {
            "description": "成功响应",
            "content": {
              "application/json": {
                "example": {
                  "code": "0000",
                  "message": "成功"
                }
              }
            }
          }
        }
      }
    }
  }
}