Properties
| Name | Type | Description |
|---|---|---|
| updated_at | string | |
| location_type | object | |
| id | string | |
| name | string | |
| items | array | |
| created_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/List",
"title": "List",
"type": "object",
"properties": {
"updated_at": {
"type": "string"
},
"location_type": {
"$ref": "#/components/schemas/ListTypeEnum"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"items": {
"type": "array",
"items": {
"type": "string"
}
},
"created_at": {
"type": "string"
}
},
"required": [
"id",
"name"
]
}