{
    "openapi": "3.0.0",
    "info": {
      "title": "Contact details of banks' hotline for review arrangements for credit decisions",
      "description": "Contact details of banks' hotline for review arrangements for credit decisions will be made available for access in JSON format through Open API which is provided by HKMA in official website and listed in Open Data Portal",
      "version": "v1"
    },
    "servers": [
      {
        "url": "https://api.hkma.gov.hk/public/contact-for-credit-review-arrangements",
        "variables": {}
      }
    ],
    "paths": {
      "/contact-for-credit-review-arrangements": {
        "get": {
          "summary": "Retrieve information of Contact details of banks' hotline for review arrangements for credit decisions will be made available for access in JSON format through Open API which is provided by HKMA in official website and listed in Open Data Portal",
          "parameters": [
            {
              "name": "lang",
              "in": "query",
              "description": "",
              "required": true,
              "style": "form",
              "explode": true,
              "schema": {
                "$ref": "#/components/schemas/Lang"
              }
            },
            {
              "name": "pagesize",
              "in": "query",
              "description": "",
              "style": "form",
              "explode": true,
              "schema": {
                "type": "integer",
                "format": "int32"
              }
            },
            {
              "name": "offset",
              "in": "query",
              "description": "",
              "style": "form",
              "explode": true,
              "schema": {
                "type": "integer",
                "format": "int32"
              }
            },
            {
              "name": "fields",
              "in": "query",
              "description": "",
              "style": "form",
              "explode": true,
              "schema": {
                "type": "string"
              }
            },
            {
              "name": "column",
              "in": "query",
              "description": "",
              "style": "form",
              "explode": true,
              "schema": {
                "type": "string"
              }
            },
            {
              "name": "filter",
              "in": "query",
              "description": "",
              "style": "form",
              "explode": true,
              "schema": {
                "type": "string"
              }
            },
            {
              "name": "choose",
              "in": "query",
              "description": "",
              "style": "form",
              "explode": true,
              "schema": {
                "type": "string"
              }
            },
            {
              "name": "from",
              "in": "query",
              "description": "",
              "style": "form",
              "explode": true,
              "schema": {
                "type": "string"
              }
            },
            {
              "name": "to",
              "in": "query",
              "description": "",
              "style": "form",
              "explode": true,
              "schema": {
                "type": "string"
              }
            },
            {
              "name": "sortby",
              "in": "query",
              "description": "",
              "style": "form",
              "explode": true,
              "schema": {
                "type": "string"
              }
            },
            {
              "name": "sortorder",
              "in": "query",
              "description": "",
              "style": "form",
              "explode": true,
              "schema": {
                "$ref": "#/components/schemas/Sortorder"
              }
            }
          ],
          "responses": {
            "200": {
              "description": "Expected response to a valid request",
              "content": {
                "application/json": {
                  "schema": {
                    "$ref": "#/components/schemas/Response"
                  }
                }
              }
            },
            "500": {
              "description": "Unexcpeted error",
              "content": {
                "application/json": {
                  "schema": {
                    "$ref": "#/components/schemas/ErrorResponse"
                  }
                }
              }
            }
          }
        }
      }
    },
    "components": {
      "schemas": {
        "Header": {
          "title": "Header",
          "type": "object",
          "properties": {
            "success": {
              "type": "boolean"
            },
            "err_code": {
              "type": "string"
            },
            "err_msg": {
              "type": "string"
            }
          }
        },
        "Response": {
          "title": "response",
          "type": "object",
          "properties": {
            "header": {
              "$ref": "#/components/schemas/Header"
            },
            "result": {
              "$ref": "#/components/schemas/Result"
            }
          }
        },
        "Result": {
          "title": "Result",
          "type": "object",
          "properties": {
            "datasize": {
              "type": "integer",
              "format": "int32"
            },
            "records": {
              "type": "array",
              "items": {
                  "$ref": "#/components/schemas/Record"
              },
              "description": ""
            }
          }
        },
        "Record": {
          "title": "Record",
          "type": "object",
          "properties": {
            "bank_name": {
              "type": "string"
            },
            "review_arrangement_hotline": {
              "type": "string"
            },
            "review_arrangement_email": {
              "type": "string"
            }
          }
        },
        "Sortorder": {
          "title": "sortorder",
          "enum": [
            "asc",
            "desc"
          ],
          "type": "string",
          "example": "asc",
          "x-enum-elements": [
            {
              "name": "asc",
              "description": ""
            },
            {
              "name": "desc",
              "description": ""
            }
          ]
        },
        "Lang": {
          "title": "lang",
          "enum": [
            "en",
            "tc",
            "sc"
          ],
          "type": "string",
          "example": "en",
          "x-enum-elements": [
            {
              "name": "en",
              "description": "Data in English"
            },
            {
              "name": "tc",
              "description": "Data in Traditional Chinese"
            },
            {
              "name": "sc",
              "description": "Data in Simplified Chinese"
            }
          ]
        },
        "ErrorResponse": {
          "title": "errorResponse",
          "type": "object",
          "properties": {
            "header": {
              "$ref": "#/components/schemas/Header"
            }
          }
        }
      }
    }
}