Basetrip · Schema

CountryListResponse

CitiesCountriesHealthSafetyTravelVisa

Properties

Name Type Description
countries array
count integer Total number of countries
View JSON Schema on GitHub

JSON Schema

countrylistresponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/basetrip/refs/heads/main/json-schema/countrylistresponse.json",
  "title": "CountryListResponse",
  "type": "object",
  "properties": {
    "countries": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Country"
      }
    },
    "count": {
      "type": "integer",
      "description": "Total number of countries"
    }
  }
}