Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Line ID |
| status | string | Line status |
| created_at | string | Timestamp when the line was posted |
| updated_at | string | Timestamp when the line was last updated |
| title | string | Line title (summary) |
| content | string | Plain text message content |
| type | string | Line type |
| creator | object | |
| bucket | object | |
| parent | object | |
| boosts_count | integer | Number of boosts on this line |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/basecamp/json-schema/campfireline-schema.json",
"title": "CampfireLine",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Line ID"
},
"status": {
"type": "string",
"description": "Line status"
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the line was posted"
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the line was last updated"
},
"title": {
"type": "string",
"description": "Line title (summary)"
},
"content": {
"type": "string",
"description": "Plain text message content"
},
"type": {
"type": "string",
"description": "Line type"
},
"creator": {
"$ref": "#/components/schemas/PersonRef"
},
"bucket": {
"$ref": "#/components/schemas/BucketRef"
},
"parent": {
"$ref": "#/components/schemas/Recording"
},
"boosts_count": {
"type": "integer",
"description": "Number of boosts on this line"
}
}
}