A named activity and its optional weekly budget.
Record Key
any
Any valid record key
Properties
budget
ref
#budget
Optional
No description available.
color
string
Required
No description available.
maxLength: 9 bytesminLength: 4 bytescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
name
string
Required
No description available.
maxLength: 80 bytesminLength: 1 bytesupdatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"color",
"createdAt",
"updatedAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 80,
"minLength": 1
},
"color": {
"type": "string",
"maxLength": 9,
"minLength": 4
},
"budget": {
"ref": "#budget",
"type": "ref"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"updatedAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A named activity and its optional weekly budget."
}