Basecamp · JSON Structure

Subscription Structure

Type: record Properties: 0
CollaborationProject ManagementRESTSaaSTeam Communication

Subscription 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/subscription-structure.json",
  "title": "Subscription",
  "type": "record",
  "members": [
    {
      "name": "subscribed",
      "type": "boolean",
      "description": "Whether the authenticated user is subscribed"
    },
    {
      "name": "count",
      "type": "integer",
      "description": "Total number of subscribers"
    },
    {
      "name": "url",
      "type": "string",
      "description": "API URL for this subscription resource"
    },
    {
      "name": "subscribers",
      "type": "array",
      "description": "List of subscribed people"
    }
  ]
}