Skip to content

Instantly share code, notes, and snippets.

@erop
Last active June 9, 2020 09:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erop/bf488b8a80f65b1d0da9e89280bf00e1 to your computer and use it in GitHub Desktop.
Save erop/bf488b8a80f65b1d0da9e89280bf00e1 to your computer and use it in GitHub Desktop.
// REQUEST
{
"year":2017,
"vin":"134513879",
"plate":"A123AA777",
"powerHp":"146.1",
"model":"/api/vehicle_models/000b69fa-a335-49d6-b7be-49fbe570376a",
"ownerPerson": {
"firstName":"Egor"
}
}
// 201 Created
{
"@context": "/api/contexts/Vehicle",
"@id": "/api/vehicles/eca7b90f-5a33-44b0-8574-c4e68302f05a",
"@type": "Vehicle",
"year": 2017,
"plate": "A123AA777",
"powerHp": "146.1",
"vin": "134513879",
"model": "/api/vehicle_models/000b69fa-a335-49d6-b7be-49fbe570376a",
"documents": [],
"category": {
"@id": "/api/vehicle_categories/749cc277-5b81-4944-87ed-9ed41fc7fab1",
"@type": "VehicleCategory",
"code": "B"
},
"owner": {
"@id": "/api/people/9878dcf6-7b04-428c-bce6-b0307f04a370",
"@type": "Person"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment