Setting Post based auto labeling.
Record Key
tid
Timestamp-based ID
Properties
action
string
Optional
Required for 'account', It should be 'add' or 'remove'
appliedTo
string
Required
'account' or 'post'
condition
string
Required
Setting apply condition with regex
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
durationInHours
integer
Required
Hour based label dulation. 0 will be no duration.
label
string
Required
If condition are matched, which label are applyed or removed.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"label",
"condition",
"appliedTo",
"durationInHours",
"createdAt"
],
"properties": {
"label": {
"type": "string",
"description": "If condition are matched, which label are applyed or removed."
},
"action": {
"type": "string",
"description": "Required for 'account', It should be 'add' or 'remove'"
},
"appliedTo": {
"type": "string",
"description": "'account' or 'post'"
},
"condition": {
"type": "string",
"description": "Setting apply condition with regex"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"durationInHours": {
"type": "integer",
"description": "Hour based label dulation. 0 will be no duration."
}
}
},
"description": "Setting Post based auto labeling."
}