πŸ“– Trait Objects

Fields' description and JSON of various objects returned in our API Responses.

Location

Location is an object accessible via the field location and follows the JSON structure below:

FieldTypeDescription
textstring RequiredLocation text address.
latfloat RequiredGeocentric latitude of the Location.
lngfloat RequiredGeocentric longitude of the Location.
{
  "text": "Scotland",
  "lat": "56.4907",
  "lng": "4.2026"
}

Skills

Skills is an array of objects accessible via the field skills and follows the JSON structure below:

FieldTypeDescription
namestring RequiredIdentification name of the Skill.
typestring RequiredType of the Skill. hard or soft
valuestringValue associated to the Skill.
[
  {
    "name": "communication",
    "value": null,
    "type": "soft"
  },
  {
    "name": "salesforce",
    "value": null,
    "type": "hard"
  }
]

Languages, Certifications, Courses, Tasks, Interests, Tags, Metadatas

These are arrays of objects following the JSON structure below:

FieldTypeDescription
namestring RequiredIdentification name of the Object.
valuestringValue associated to the Object's name.
[
  { "name": "english", "value": null },
  { "name": "french", "value": null }
]
[
  { "name": "salesforce", "value": null },
  { "name": "toefl", "value": null }
]
[
  { "name": "maths", "value": null },
  { "name": "physics", "value": null }
]
[
  { "name": "Teaching maths", "value": null },
  { "name": "Learning physics", "value": null }
]
[
  { "name": "football", "value": null },
  { "name": "tennis", "value": null }
]
[
  { "name": "subject", "value": "Greetings" },
  { "name": "message", "value": "Hellow world!" }
]
[
  { "name": "active", "value": true },
  { "name": "archived", "value": false }
]