My sample Bloh

·

1 min read

Testing code blocks

{
   "properties":{
      "amount":{
         "description":"the amount of money represented in the smallest denomination of the currency. For example, when the currency is USD, then the amount is expressed in cents.",
         "type":"integer"
      },
      "currency_code":{
         "default":"USD",
         "description":"The type of currency, in ISO 4217 format. e.g. USD for US dollars",
         "type":"string"
      }
   },
   "required":[
      "amount",
      "currency_code"
   ],
   "type":"object"
}