HTTP status code
200
Body
Type: application/json
Schema:
{
"type": "object",
"$schema": "http://jsonapi.org/schema",
"title": "Tours",
"description": "Tours collection",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string",
"required": "true"
},
"id": {
"type": "string",
"required": "true"
},
"attributes": {
"type": "object",
"required": "true",
"properties": {
"title": {
"type": "string",
"required": "true"
}
}
},
"links": {
"type": "object",
"required": "true",
"properties": {
"self": {
"type": "string",
"required": "true"
}
}
},
"relationships": {
"type": "object",
"required": "true",
"properties": {
"brand": {
"type": "object",
"required": "true",
"properties": {
"links": {
"type": "object",
"properties": {
"self": {
"type": "string",
"required": "true"
},
"related": {
"type": "string",
"required": "true"
}
}
},
"data": {
"type": "object",
"required": "true",
"properties": {
"type": {
"type": "string",
"required": "true"
},
"id": {
"type": "string",
"required": "true"
}
}
}
}
},
"domain": {
"type": "object",
"required": "true",
"properties": {
"links": {
"type": "object",
"properties": {
"self": {
"type": "string",
"required": "true"
},
"related": {
"type": "string",
"required": "true"
}
}
},
"data": {
"type": "object",
"required": "true",
"properties": {
"type": {
"type": "string",
"required": "true"
},
"id": {
"type": "string",
"required": "true"
}
}
}
}
}
}
}
}
}
}
}
}
Example:
{
"data": [
{
"type": "tours",
"id": "6862",
"attributes": {
"title": "Découverte de l'Argentince"
},
"links": {
"self": "http:\/\/tours.marcovasco.fr\/0\/tours\/6862?domainId=25&brand=1"
},
"relationships": {
"domain": {
"links": {
"self": "http:\/\/tours.marcovasco.fr\/0\/tours\/6862?domainId=25&brand=1\/relationships\/domain",
"related": "http:\/\/tours.marcovasco.fr\/0\/tours\/6862?domainId=25&brand=1\/domain"
},
"data": {
"type": "domains",
"id": "25"
}
},
"brand": {
"links": {
"self": "http:\/\/tours.marcovasco.fr\/0\/tours\/6862?domainId=25&brand=1\/relationships\/brand",
"related": "http:\/\/tours.marcovasco.fr\/0\/tours\/6862?domainId=25&brand=1\/brand"
},
"data": {
"type": "brands",
"id": "1"
}
}
}
},
],
"included": [
{
"type": "domains",
"id": "25",
"attributes": {
"title": "Argentine"
},
"links": {
"self": "http:\/\/tours.marcovasco.fr\/0\/tours\/domains\/25"
}
},
{
"type": "brands",
"id": "1",
"attributes": {
"title": "MarcoVasco"
},
"links": {
"self": "http:\/\/tours.marcovasco.fr\/0\/tours\/brands\/1"
}
}
]
}
HTTP status code
204