Basecamp · JSON Structure

Template Structure

Type: record Properties: 0
CollaborationProject ManagementRESTSaaSTeam Communication

Template Structure is a JSON Structure definition published by Basecamp. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Meta-schema: https://json-structure.org/meta/extended/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "https://api-evangelist.github.io/basecamp/json-structure/template-structure.json",
  "title": "Template",
  "type": "record",
  "members": [
    {
      "name": "id",
      "type": "integer",
      "description": "Template ID"
    },
    {
      "name": "status",
      "type": "string",
      "description": "Template status"
    },
    {
      "name": "created_at",
      "type": "string",
      "description": "Timestamp when the template was created"
    },
    {
      "name": "updated_at",
      "type": "string",
      "description": "Timestamp when the template was last updated"
    },
    {
      "name": "name",
      "type": "string",
      "description": "Template name"
    },
    {
      "name": "description",
      "type": "string",
      "description": "Template description"
    },
    {
      "name": "url",
      "type": "string",
      "description": "API URL for this template"
    },
    {
      "name": "app_url",
      "type": "string",
      "description": "Web URL for this template"
    },
    {
      "name": "dock",
      "type": "array",
      "description": "Tools available in this template"
    }
  ]
}