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:
Field | Type | Description |
---|---|---|
text | string Required | Location text address. |
lat | float Required | Geocentric latitude of the Location. |
lng | float Required | Geocentric 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:
Field | Type | Description |
---|---|---|
name | string Required | Identification name of the Skill. |
type | string Required | Type of the Skill. hard or soft |
value | string | Value 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:
Field | Type | Description |
---|---|---|
name | string Required | Identification name of the Object. |
value | string | Value 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 }
]