Account Actor experiment
Record Key
tid
Timestamp-based ID
Properties
actor
string
at-uri
Required
AtUri of a user's profile or managed profile
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
overrides
ref
#overrides
Optional
Overrides for the profile
type
string
Optional
Type of the account
maxLength: 640 bytesmaxGraphemes: 64 graphemesKnown values:
project, user, organisation, collectiveDefault:
userView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"createdAt",
"actor"
],
"properties": {
"type": {
"type": "string",
"default": "user",
"maxLength": 640,
"description": "Type of the account",
"knownValues": [
"project",
"user",
"organisation",
"collective"
],
"maxGraphemes": 64
},
"actor": {
"type": "string",
"format": "at-uri",
"description": "AtUri of a user's profile or managed profile"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"overrides": {
"ref": "#overrides",
"type": "ref",
"description": "Overrides for the profile"
}
}
},
"description": "Account Actor experiment"
}