Properties
| Name | Type | Description |
|---|---|---|
| created_at | string | |
| description | string | |
| duration | number | |
| id | string | |
| is_active | boolean | |
| name | string | |
| price_amount | number | |
| price_currency | string | |
| raw | object | |
| updated_at | string | |
| url | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CalendarLink",
"title": "CalendarLink",
"properties": {
"created_at": {
"type": "string"
},
"description": {
"type": "string"
},
"duration": {
"type": "number"
},
"id": {
"type": "string"
},
"is_active": {
"type": "boolean"
},
"name": {
"type": "string"
},
"price_amount": {
"type": "number"
},
"price_currency": {
"type": "string"
},
"raw": {
"additionalProperties": true,
"type": "object"
},
"updated_at": {
"type": "string"
},
"url": {
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}