---
title: "Country"
url: "https://developer.retailexpress.com.au/apis/retail-express-api-21-v2/versions/210b509a-613e-44ac-a87b-ef6c22c23a2c/schemas/Country"
---

> Full API specification: https://developer.retailexpress.com.au/apis/retail-express-api-21-v2/versions/210b509a-613e-44ac-a87b-ef6c22c23a2c.md

# Country

CountryVM Model

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Retail Express API
  version: v2.1
servers:
  - url: https://api.retailexpress.com.au/v2.1
components:
  schemas:
    Currency:
      title: ""
      type: object
      properties:
        id:
          type: integer
          description: Currency Id
          format: int32
          nullable: true
        currency_code:
          type: string
          description: Currency Code
          nullable: true
        currency_name:
          type: string
          description: Currency Name
          nullable: true
        modified_on:
          type: string
          description: Last Modified On
          format: date-time
      additionalProperties: false
      description: Currencies model
    Country:
      title: ""
      type: object
      properties:
        id:
          type: integer
          description: id
          format: int32
          nullable: true
        code:
          type: string
          description: code
          nullable: true
        name:
          type: string
          description: name
          nullable: true
        tax_rate:
          type: number
          description: tax_rate
          format: double
        tax_label:
          type: string
          description: tax_label
          nullable: true
        currency_multiplier:
          type: number
          description: currency_multiplier
          format: double
        fob_currency:
          $ref: "#/components/schemas/Currency"
        modified_on:
          type: string
          description: Modified on
          format: date-time
      additionalProperties: false
      description: CountryVM Model
```
