{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/basecamp/json-schema/todolistcreaterequest-schema.json", "title": "TodoListCreateRequest", "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string", "description": "To-do list name" }, "description": { "type": "string", "description": "Optional description with supported HTML formatting" } } }