occasion-sdk
Version:
An SDK library that enables access to Occasion's application, providing a rich DSL for creating and managing bookings.
49 lines (48 loc) • 920 B
JSON
{
"data": {
"id": "1",
"type": "products",
"attributes": {
"title": "Another title",
"description": "Another description",
"requires_time_slot_selection": true
},
"relationships": {
"orders": {
"data": [
{
"id": 3,
"type": "orders"
},
{
"id": 4,
"type": "orders"
}
],
"links": {
"self": "https://example.com/api/v1/products/1/relationships/orders/",
"related": "https://example.com/api/v1/products/1/orders/"
}
}
},
"links": {
"self": "https://example.com/api/v1/products/1/"
}
},
"included": [
{
"id": 3,
"type": "orders",
"attributes": {
"price": 1.0
}
},
{
"id": 4,
"type": "orders",
"attributes": {
"price": 2.0
}
}
]
}