{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "WriteLookWithQuery", "type": "object", "description": "Writable fields for creating or updating a Look", "properties": { "title": { "type": "string", "description": "Display title" }, "description": { "type": "string", "description": "Description of the Look" }, "space_id": { "type": "string", "description": "Space (folder) ID to place the Look in" }, "folder_id": { "type": "string", "description": "Folder ID to place the Look in" }, "query_id": { "type": "integer", "description": "ID of the query to use" }, "public": { "type": "boolean", "description": "Whether the Look is public" }, "is_run_on_load": { "type": "boolean", "description": "Whether to auto-run the query on load" } } }