Country Dossiers

A Country Dossier has a one-to-one relationship with a country resource and contains additional content about the country.

XML Schema:

Resource Definition

Note

This resource can be searched, allowing to you to access a filtered set of data. See our Searching The G API documentation for details on how to query specific fields and the operators available.

Fields

Name

Type

Description

name

String

The name of the country dossier.

date_created

Datetime

The time when the resource was created, in the standard Dates & Times.

date_last_modified

Datetime

The time when the resource was last modified, in the standard Dates & Times.

details

Field

List of free text details for this dossier.

  • id read-only

String

  • body required

String

Informational text for this detail.

  • detail_type required

Nested Object

    • id read-only

String

    • label

String

Contains the label for a dossier feature.

    • code required

String

Contains a code for a dossier feature.

type

String

The type of this resource.

id read-only

String

href read-only

Field

publish_state

String

Can be either published or unpublished

dossier_segment

Nested Object

The segment data associated with this dossier.

  • id read-only

String

  • href read-only

Field

  • code required

String

A unique ASCII code to identify this segment.

  • label

String

A human-readable description of this segment.

features

Field

List of features

  • id read-only

String

  • href read-only

Field

  • label

String

Contains the label for a dossier feature.

  • code required

String

Contains a code for the dossier feature.

country required

Reference Object

The country associated to this dossier.

meal_budgets

Field

List of budget required for different meal types in a country

  • id

String

  • quality required

Choice

The quality of the meal

  • quality_value read-only

String

The quality of the meal in human readable format

  • meal_type required

Choice

Displays the meal course

  • meal_type_value read-only

String

Displays the meal course in human readable format

  • amount

Integer

Cost for a meal in USD

flags

List

List of generic flags applied to this dossier

Get a Country Dossier

GET /country_dossiers/(string: country_dossier_id)

Request

curl -H "X-Application-Key: YOUR_APPLICATION_KEY" 
https://rest.gadventures.com/country_dossiers/10382

Response

{
  "name": "Jordan",
  "date_created": "2014-12-20T14:16:12",
  "date_last_modified": "2015-01-08T17:06:21",
  "details": [
    {
      "id": "14915",
      "body": "Visiting Jordan is the kind of trip you plan around the sights and return talking about the people. There's no shortage of sights: even in a region full of must-sees, Petra – an entire city carved from reddish sandstone cliffs – is one of the most awe-inspiring archaeological sites in the world. Jordan's desert landscape and strangely familiar names evoke romantic images in the West; here, you can literally walk in the footsteps of Jesus or Lawrence of Arabia (or Indiana Jones, if you prefer). But whether you tastes, be they the world-class diving in the Red Sea or the healing mud treatments of Dead Sea spas, Jordan's most lasting impression always seems to be its warm, welcoming people.",
      "detail_type": {
        "label": "Summary",
        "code": "COMMON__SUMMARY"
      }
    }
  ],
  "type": "country_dossiers",
  "id": "10382",
  "href": "https://rest.gadventures.com/country_dossiers/10382",
  "publish_state": "published",
  "dossier_segment": null,
  "features": [],
  "country": {
    "id": "JO",
    "href": "https://rest.gadventures.com/countries/JO",
    "name": "Jordan"
  },
  "meal_budgets": [
    {
      "id": "12",
      "quality": 3,
      "quality_value": "Low",
      "meal_type": "B",
      "meal_type_value": "Breakfast",
      "amount": 6
    },
    {
      "id": "11",
      "quality": 2,
      "quality_value": "Medium",
      "meal_type": "B",
      "meal_type_value": "Breakfast",
      "amount": 8
    },
    {
      "id": "10",
      "quality": 1,
      "quality_value": "High",
      "meal_type": "B",
      "meal_type_value": "Breakfast",
      "amount": 10
    },
    {
      "id": "18",
      "quality": 3,
      "quality_value": "Low",
      "meal_type": "D",
      "meal_type_value": "Dinner",
      "amount": 13
    },
    {
      "id": "17",
      "quality": 2,
      "quality_value": "Medium",
      "meal_type": "D",
      "meal_type_value": "Dinner",
      "amount": 16
    },
    {
      "id": "16",
      "quality": 1,
      "quality_value": "High",
      "meal_type": "D",
      "meal_type_value": "Dinner",
      "amount": 24
    },
    {
      "id": "15",
      "quality": 3,
      "quality_value": "Low",
      "meal_type": "L",
      "meal_type_value": "Lunch",
      "amount": 10
    },
    {
      "id": "14",
      "quality": 2,
      "quality_value": "Medium",
      "meal_type": "L",
      "meal_type_value": "Lunch",
      "amount": 12
    },
    {
      "id": "13",
      "quality": 1,
      "quality_value": "High",
      "meal_type": "L",
      "meal_type_value": "Lunch",
      "amount": 14
    }
  ],
  "flags": []
}