Basecamp · Schema

ProjectCreateRequest

CollaborationProject ManagementRESTSoftware-as-a-ServiceTeam Communication

Properties

Name Type Description
name string Name for the new project
description string Optional description of the project
View JSON Schema on GitHub

JSON Schema

projectcreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/basecamp/json-schema/projectcreaterequest-schema.json",
  "title": "ProjectCreateRequest",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Name for the new project"
    },
    "description": {
      "type": "string",
      "description": "Optional description of the project"
    }
  }
}