{
  "openapi": "3.0.1",
  "info": {
    "title": "Currency Formats",
    "description": "Create and administer a collection of currency formats.",
    "version": "9.1.20.0",
    "x-introduced": "9.1.0.0"
  },
  "servers": [
    {
      "url": "https://{hostname}:{port}/rest/admin/v2",
      "variables": {
        "port": {
          "default": "443",
          "enum": [
            "443",
            "8000"
          ]
        },
        "hostname": {
          "default": "localhost",
          "enum": [
            "localhost",
            "test.hcl.com"
          ]
        }
      }
    }
  ],
  "tags": [
    {
      "name": "Currency Formats",
      "description": "Provide RESTful services to manage currency formats."
    }
  ],
  "paths": {
    "/currency-formats": {
      "get": {
        "tags": [
          "Currency Formats"
        ],
        "description": "Get a collection of currency formats.",
        "operationId": "getCurrencyFormats",
        "parameters": [
          {
            "name": "storeId",
            "in": "query",
            "description": "The StoreEntity this formatting rule is part of.",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "currency",
            "in": "query",
            "description": "The currency. This is a currency code as per ISO 4217 standards.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "roundingMultiple",
            "in": "query",
            "description": "Rounding multiple according to national law or practice. For example, specify 5 to round dollars to the nearest five cent piece. The default value is 1.",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "numberUsg",
            "in": "query",
            "description": "This currency formatting rule should be used when formatting monetary amounts for this usage.",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "roundingMethod",
            "in": "query",
            "description": "How to round to a multiple of ROUNDINGMULTIPLE R = round normally - up or down - to the nearest multiple T = truncate - round down for positive amounts, round up for negative amounts.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "decimalPlaces",
            "in": "query",
            "description": "The number of decimal places in a rounded or truncated monetary amount.",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "minimumApproveAmount",
            "in": "query",
            "description": "A small amount to be authorized when a backorder is initially submitted, to check that a successful authorization can be obtained. The full amount of the Order will not be authorized until sufficient inventory is allocated to release the backorder.",
            "schema": {
              "type": "number"
            }
          },
          {
            "name": "offset",
            "in": "query",
            "description": "The position within the resulting dataset where the query begins returning item records. If the offset is \"5\", the records that returned begin with the sixth record that matches the query parameters. If the offset is \"0\", the records that are returned begin with the first record that matches the query parameters.",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "limit",
            "in": "query",
            "description": "The maximum number of records to return.",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "description": "The comma-separated set of properties to be returned. If no properties are specified, all properties are returned.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "expand",
            "in": "query",
            "description": "The comma-separated set of related resources referenced in the links to be returned. If no related resources are specified, no related resources are returned.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sort",
            "in": "query",
            "description": "The comma-separated set of properties which controls the order of the items being listed, prefixed by either (-) to sort by descending order, or optionally (+) to sort by ascending order. For example, sort=name,-d which means, order the items based on the name value in ascending order, then by the id value in descending order.",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "A collection of currency formats.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CurrencyFormatCollection"
                }
              }
            }
          },
          "400": {
            "description": "There was a client error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponseContainer"
                }
              }
            }
          },
          "500": {
            "description": "There was a server error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponseContainer"
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "Currency Formats"
        ],
        "description": "Create a currency format.",
        "operationId": "createCurrencyFormat",
        "requestBody": {
          "description": "Language-independent part of a currency formatting rule.",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CurrencyFormatRequest"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "description": "The operation was successful.",
            "content": {},
            "headers": {
              "Location": {
                "description": "The URI of the currency description.",
                "schema": {
                  "type": "string"
                }
              }
            },
            "links": {
              "GetCurrencyFormat": {
                "operationRef": "#/paths/~1currency-formats~1storeId:{storeId},currency:{currency},numberUsg:{numberUsg}/get",
                "parameters": {
                  "storeId": "$request.body#/storeId",
                  "currency": "$request.body#/currency",
                  "numberUsg": "$request.body#/numberUsg"
                },
                "description": "The `storeId`, `currency`, `numberUsg` value used in the request body can be used as the `storeId`, `currency`, `numberUsg` parameter in `GET /currency-formats/storeId:{storeId},currency:{currency},numberUsg:{numberUsg}`.\n"
              },
              "DeleteCurrencyFormat": {
                "operationRef": "#/paths/~1currency-formats~1storeId:{storeId},currency:{currency},numberUsg:{numberUsg}/delete",
                "parameters": {
                  "storeId": "$request.body#/storeId",
                  "currency": "$request.body#/currency",
                  "numberUsg": "$request.body#/numberUsg"
                },
                "description": "The `storeId`, `currency`, `numberUsg` value used in the request body can be used as the `storeId`, `currency`, `numberUsg` parameter in `DELETE /currency-formats/storeId:{storeId},currency:{currency},numberUsg:{numberUsg}`.\n"
              },
              "UpdateCurrencyFormat": {
                "operationRef": "#/paths/~1currency-formats~1storeId:{storeId},currency:{currency},numberUsg:{numberUsg}/patch",
                "parameters": {
                  "storeId": "$request.body#/storeId",
                  "currency": "$request.body#/currency",
                  "numberUsg": "$request.body#/numberUsg"
                },
                "description": "The `storeId`, `currency`, `numberUsg` value used in the request body can be used as the `storeId`, `currency`, `numberUsg` parameter in `PATCH /currency-formats/storeId:{storeId},currency:{currency},numberUsg:{numberUsg}`.\n"
              },
              "GetCurrencyFormatDescription": {
                "operationRef": "#/paths/~1currency-formats~1storeId:{storeId},currency:{currency},numberUsg:{numberUsg}/patch",
                "parameters": {
                  "storeId": "$request.body#/storeId",
                  "currency": "$request.body#/currency",
                  "numberUsg": "$request.body#/numberUsg"
                },
                "description": "The `storeId`, `currency`, `numberUsg` value used in the request body can be used as the `storeId`, `currency`, `numberUsg` parameter in `PATCH /currency-formats/storeId:{storeId},currency:{currency},numberUsg:{numberUsg}`.\n"
              }
            }
          },
          "400": {
            "description": "There was a client error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponseContainer"
                }
              }
            }
          },
          "500": {
            "description": "There was a server error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponseContainer"
                }
              }
            }
          }
        },
        "x-codegen-request-body-name": "CurrencyFormat"
      }
    },
    "/currency-formats/storeId:{storeId},currency:{currency},numberUsg:{numberUsg}": {
      "get": {
        "tags": [
          "Currency Formats"
        ],
        "description": "Get a currency format.",
        "operationId": "getCurrencyFormatById",
        "parameters": [
          {
            "name": "storeId",
            "in": "path",
            "description": "The StoreEntity this formatting rule is part of.",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "currency",
            "in": "path",
            "description": "The currency. This is a currency code as per ISO 4217 standards.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "numberUsg",
            "in": "path",
            "description": "This currency formatting rule should be used when formatting monetary amounts for this usage.",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "description": "The comma-separated set of properties to be returned. If no properties are specified, all properties are returned.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "expand",
            "in": "query",
            "description": "The comma-separated set of related resources referenced in the links to be returned. If no related resources are specified, no related resources are returned.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sort",
            "in": "query",
            "description": "The comma-separated set of properties which controls the order of the items being listed, prefixed by either (-) to sort by descending order, or optionally (+) to sort by ascending order. For example, sort=name,-d which means, order the items based on the name value in ascending order, then by the id value in descending order.",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Language-independent part of a currency formatting rule.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CurrencyFormat"
                }
              }
            }
          },
          "400": {
            "description": "There was a client error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponseContainer"
                }
              }
            }
          },
          "404": {
            "description": "The resource was not found.",
            "content": {}
          },
          "500": {
            "description": "There was a server error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponseContainer"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "Currency Formats"
        ],
        "description": "Delete a currency format.",
        "operationId": "deleteCurrencyFormatById",
        "parameters": [
          {
            "name": "storeId",
            "in": "path",
            "description": "The StoreEntity this formatting rule is part of.",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "currency",
            "in": "path",
            "description": "The currency. This is a currency code as per ISO 4217 standards.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "numberUsg",
            "in": "path",
            "description": "This currency formatting rule should be used when formatting monetary amounts for this usage.",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "The operation was successful.",
            "content": {}
          },
          "400": {
            "description": "There was a client error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponseContainer"
                }
              }
            }
          },
          "404": {
            "description": "The resource was not found.",
            "content": {}
          },
          "500": {
            "description": "There was a server error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponseContainer"
                }
              }
            }
          }
        }
      },
      "patch": {
        "tags": [
          "Currency Formats"
        ],
        "description": "Update a currency format.",
        "operationId": "updateCurrencyFormatById",
        "parameters": [
          {
            "name": "storeId",
            "in": "path",
            "description": "The storeId this formatting rule is part of.",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "currency",
            "in": "path",
            "description": "The currency. This is a currency code as per ISO 4217 standards.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "numberUsg",
            "in": "path",
            "description": "This currency formatting rule should be used when formatting monetary amounts for this usage.",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "description": "Language-independent part of a currency formatting rule.",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CurrencyFormatRequest"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "The operation was successful.",
            "content": {}
          },
          "400": {
            "description": "There was a client error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponseContainer"
                }
              }
            }
          },
          "404": {
            "description": "The resource was not found.",
            "content": {}
          },
          "500": {
            "description": "There was a server error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponseContainer"
                }
              }
            }
          }
        },
        "x-codegen-request-body-name": "CurrencyFormat"
      }
    },
    "/currency-formats/storeId:{storeId},currency:{currency},numberUsg:{numberUsg}/descriptions": {
      "get": {
        "tags": [
          "Currency Formats"
        ],
        "operationId": "getDescriptionsOfCurrencyFormat",
        "parameters": [
          {
            "name": "storeId",
            "in": "path",
            "description": "The StoreEntity this formatting rule is part of.",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "currency",
            "in": "path",
            "description": "The currency. This is a currency code as per ISO 4217 standards.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "numberUsg",
            "in": "path",
            "description": "This currency formatting rule should be used when formatting monetary amounts for this usage.",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "offset",
            "in": "query",
            "description": "The position within the resulting dataset where the query begins returning item records. If the offset is \"5\", the records that returned begin with the sixth record that matches the query parameters. If the offset is \"0\", the records that are returned begin with the first record that matches the query parameters.",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "limit",
            "in": "query",
            "description": "The maximum number of records to return.",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "description": "The comma-separated set of properties to be returned. If no properties are specified, all properties are returned.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "expand",
            "in": "query",
            "description": "The comma-separated set of related resources referenced in the links to be returned. If no related resources are specified, no related resources are returned.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sort",
            "in": "query",
            "description": "The comma-separated set of properties which controls the order of the items being listed, prefixed by either (-) to sort by descending order, or optionally (+) to sort by ascending order. For example, sort=name,-d which means, order the items based on the name value in ascending order, then by the id value in descending order.",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "A collection of currency format descriptions.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CurrencyFormatDescriptionCollection"
                }
              }
            }
          },
          "400": {
            "description": "There was a client error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponseContainer"
                }
              }
            }
          },
          "500": {
            "description": "There was a server error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponseContainer"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "Link": {
        "type": "object",
        "properties": {
          "href": {
            "type": "string",
            "description": "The URL of the link.",
            "format": "uri"
          }
        },
        "description": "Links to related resources."
      },
      "Error": {
        "type": "object",
        "properties": {
          "errorCode": {
            "type": "string",
            "description": "The error message code."
          },
          "errorMessage": {
            "type": "string",
            "description": "The error message."
          },
          "errorKey": {
            "type": "string",
            "description": "The error message key."
          },
          "errorParameters": {
            "type": "array",
            "description": "The arguments used to construct the error message.",
            "items": {
              "type": "object",
              "properties": {}
            }
          },
          "errorLevel": {
            "type": "string",
            "description": "The error level."
          },
          "errorHref": {
            "type": "string",
            "description": "The error hypertext reference."
          }
        },
        "description": "The error message item model."
      },
      "ErrorResponseContainer": {
        "type": "object",
        "properties": {
          "requestId": {
            "type": "string",
            "description": "The request identifier."
          },
          "errors": {
            "type": "array",
            "description": "The errors.",
            "items": {
              "$ref": "#/components/schemas/Error"
            }
          }
        },
        "description": "The error message model."
      },
      "CurrencyFormatRequest": {
        "required": [
          "storeId",
          "currency",
          "roundingMultiple",
          "numberUsg",
          "roundingMethod",
          "decimalPlaces"
        ],
        "type": "object",
        "properties": {
          "storeId": {
            "type": "integer",
            "description": "The StoreEntity this formatting rule is part of.",
            "format": "int32"
          },
          "currency": {
            "type": "string",
            "description": "The currency. This is a currency code as per ISO 4217 standards."
          },
          "roundingMultiple": {
            "type": "integer",
            "description": "Rounding multiple according to national law or practice. For example, specify 5 to round dollars to the nearest five cent piece. The default value is 1.",
            "format": "int32"
          },
          "numberUsg": {
            "type": "integer",
            "description": "This currency formatting rule should be used when formatting monetary amounts for this usage.",
            "format": "int32"
          },
          "roundingMethod": {
            "type": "string",
            "description": "How to round to a multiple of ROUNDINGMULTIPLE R = round normally - up or down - to the nearest multiple T = truncate - round down for positive amounts, round up for negative amounts."
          },
          "decimalPlaces": {
            "type": "integer",
            "description": "The number of decimal places in a rounded or truncated monetary amount.",
            "format": "int32"
          },
          "minimumApproveAmount": {
            "type": "number",
            "description": "A small amount to be authorized when a backorder is initially submitted, to check that a successful authorization can be obtained. The full amount of the Order will not be authorized until sufficient inventory is allocated to release the backorder.",
            "nullable": true
          }
        },
        "description": "Language-independent part of a currency formatting rule."
      },
      "CurrencyFormat": {
        "required": [
          "storeId",
          "currency",
          "roundingMultiple",
          "numberUsg",
          "roundingMethod",
          "decimalPlaces"
        ],
        "type": "object",
        "properties": {
          "storeId": {
            "type": "integer",
            "description": "The StoreEntity this formatting rule is part of.",
            "format": "int32"
          },
          "currency": {
            "type": "string",
            "description": "The currency. This is a currency code as per ISO 4217 standards."
          },
          "roundingMultiple": {
            "type": "integer",
            "description": "Rounding multiple according to national law or practice. For example, specify 5 to round dollars to the nearest five cent piece. The default value is 1.",
            "format": "int32"
          },
          "numberUsg": {
            "type": "integer",
            "description": "This currency formatting rule should be used when formatting monetary amounts for this usage.",
            "format": "int32"
          },
          "roundingMethod": {
            "type": "string",
            "description": "How to round to a multiple of ROUNDINGMULTIPLE R = round normally - up or down - to the nearest multiple T = truncate - round down for positive amounts, round up for negative amounts."
          },
          "decimalPlaces": {
            "type": "integer",
            "description": "The number of decimal places in a rounded or truncated monetary amount.",
            "format": "int32"
          },
          "minimumApproveAmount": {
            "type": "number",
            "description": "A small amount to be authorized when a backorder is initially submitted, to check that a successful authorization can be obtained. The full amount of the Order will not be authorized until sufficient inventory is allocated to release the backorder.",
            "nullable": true
          },
          "links": {
            "type": "object",
            "properties": {
              "self": {
                "type": "object",
                "properties": {
                  "href": {
                    "type": "string",
                    "description": "The URL of the self link."
                  }
                },
                "description": ""
              },
              "descriptions": {
                "type": "object",
                "properties": {
                  "href": {
                    "type": "string",
                    "description": "The URL of the description link."
                  }
                },
                "description": ""
              }
            },
            "description": "Links to related resources."
          }
        },
        "description": "Language-independent part of a currency formatting rule."
      },
      "CurrencyFormatCollection": {
        "type": "object",
        "properties": {
          "href": {
            "type": "string",
            "description": "The resource."
          },
          "count": {
            "type": "integer",
            "description": "The total number of items.",
            "format": "int64"
          },
          "items": {
            "type": "array",
            "description": "The items.",
            "items": {
              "$ref": "#/components/schemas/CurrencyFormat"
            }
          }
        },
        "description": "A collection of currency formats."
      },
      "CurrencyFormatDescription": {
        "required": [
          "languageId",
          "storeId",
          "currency",
          "numberUsg"
        ],
        "type": "object",
        "properties": {
          "languageId": {
            "type": "integer",
            "description": "The language. For a list of language components, see the LANGUAGE table.",
            "format": "int32"
          },
          "currencySymbol": {
            "type": "string",
            "description": "The currency symbol."
          },
          "customizedCurrencyCode": {
            "type": "string",
            "description": "An alternate currency code. WebSphere Commerce does not use this value. You may supply a value and write your JSP macros to use it.",
            "nullable": true
          },
          "currencyPrefixPositive": {
            "type": "string",
            "description": "The prefix to use when the monetary amount is positive. If this field and CURRENCYSUFFIXPOS are null then the positivePrefix of the NumberFormat will be used.",
            "nullable": true
          },
          "currencyPrefixNegative": {
            "type": "string",
            "description": "The prefix to use when the monetary amount is negative. If this field and CURRENCYSUFFIXNEG are null then the negativePrefix of the NumberFormat will be used.",
            "nullable": true
          },
          "currencySuffixPositive": {
            "type": "string",
            "description": "The suffix to use when the monetary amount is positive. If this field and CURRENCYPREFIXPOS are null then the positiveSuffix of the NumberFormat will be used.",
            "nullable": true
          },
          "currencySuffixNegative": {
            "type": "string",
            "description": "The suffix to use when the monetary amount is negative. If this field and CURRENCYPREFIXNEG are null then the negativeSuffix of the NumberFormat will be used.",
            "nullable": true
          },
          "displayLocale": {
            "type": "string",
            "description": "The Java locale used to create a currency NumberFormat object that is used to do the formatting. If this is NULL then the locale associated with the LANGUAGE_ID (see the LANGUAGE table) is used.",
            "nullable": true
          },
          "radixPoint": {
            "type": "string",
            "description": "The radix point for the NumberFormat object. For example, when formatting dollars for the U.S. English Language, this would be the decimal point character. If this is null, then the decimal separator of the currency NumberFormat, associated with the DisplayLocale, will be used.",
            "nullable": true
          },
          "groupingCharacter": {
            "type": "string",
            "description": "The grouping character used by the NumberFormat object. For example, when formatting dollars for the U.S. English Language this would be the thousands separator. If this is null, then the grouping separator of the currency NumberFormat, associated with the DisplayLocale, will be used.",
            "nullable": true
          },
          "numberPattern": {
            "type": "string",
            "description": "The number pattern to be applied to the NumberFormat object. The number pattern is described in the JDK documentation for the class java.text.DecimalFormat. If this is NULL then the default number pattern of the NumberFormat object is used.",
            "nullable": true
          },
          "description": {
            "type": "string",
            "description": "A description of the currency, suitable for display to customers in a currency selection list.",
            "nullable": true
          },
          "storeId": {
            "type": "integer",
            "description": "A storeId.",
            "format": "int32"
          },
          "currency": {
            "type": "string",
            "description": "The currency."
          },
          "numberUsg": {
            "type": "integer",
            "description": "The numberUsg.",
            "format": "int32"
          },
          "links": {
            "type": "object",
            "properties": {
              "self": {
                "type": "object",
                "properties": {
                  "href": {
                    "type": "string",
                    "description": "The URL of the self link."
                  }
                },
                "description": ""
              }
            },
            "description": "Links to related resources."
          }
        },
        "description": "Language-dependent part of a currency formatting rule."
      },
      "CurrencyFormatDescriptionCollection": {
        "type": "object",
        "properties": {
          "href": {
            "type": "string",
            "description": "The resource."
          },
          "count": {
            "type": "integer",
            "description": "The total number of items.",
            "format": "int64"
          },
          "items": {
            "type": "array",
            "description": "The items.",
            "items": {
              "$ref": "#/components/schemas/CurrencyFormatDescription"
            }
          }
        },
        "description": "A collection of currency format descriptions."
      }
    },
    "securitySchemes": {
      "basicAuth": {
        "type": "http",
        "scheme": "basic"
      }
    }
  },
  "security": [
    {
      "basicAuth": []
    }
  ]
}
