Basecamp · Schema

TodoListCreateRequest

CollaborationProject ManagementRESTSaaSTeam Communication

Properties

Name Type Description
name string To-do list name
description string Optional description with supported HTML formatting
View JSON Schema on GitHub

JSON Schema

todolistcreaterequest-schema.json Raw ↑
{
  "$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"
    }
  }
}