Basecamp · Schema

TemplateCreateRequest

CollaborationProject ManagementRESTSaaSTeam Communication

Properties

Name Type Description
name string Template name
description string Optional template description
View JSON Schema on GitHub

JSON Schema

templatecreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/basecamp/json-schema/templatecreaterequest-schema.json",
  "title": "TemplateCreateRequest",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Template name"
    },
    "description": {
      "type": "string",
      "description": "Optional template description"
    }
  }
}