A now page update. Represents what someone is currently focused on, working on, reading, or thinking about.
Record Key
tid
Timestamp-based ID
Properties
publishedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
sections
array
of
ref
#section
Required
No description available.
maxLength: 8 itemsminLength: 1 itemsView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"publishedAt",
"sections"
],
"properties": {
"sections": {
"type": "array",
"items": {
"ref": "#section",
"type": "ref",
"nullable": false
},
"nullable": false,
"required": true,
"maxLength": 8,
"minLength": 1
},
"publishedAt": {
"type": "string",
"format": "datetime",
"nullable": false,
"required": true
}
}
},
"description": "A now page update. Represents what someone is currently focused on, working on, reading, or thinking about."
}