title: Money
type: object
description: Data model for the complex type Money.
properties:
  currency:
    type: string
    description: Currency of the amount.
    example: USD
  amount:
    type: string
    description: Amount of Money.
    example: '123.45'
required:
  - currency
  - amount
