{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AddFavoriteRequest", "title": "AddFavoriteRequest", "type": "object", "properties": { "favorite": { "type": "object", "required": [ "label" ], "properties": { "label": { "type": "string", "description": "The label for the favorite." }, "workbook": { "type": "object", "properties": { "id": { "type": "string" } } }, "view": { "type": "object", "properties": { "id": { "type": "string" } } }, "datasource": { "type": "object", "properties": { "id": { "type": "string" } } }, "project": { "type": "object", "properties": { "id": { "type": "string" } } } }, "example": "example_value" } } }