Record containing links to external service profiles.
Record Key
literal:self
Fixed literal value
Properties
createdAt
string
datetime
Required
Client-declared timestamp when this record was created.
links
array
of
ref
#linkItem
Required
Array of external service links.
updatedAt
string
datetime
Optional
Client-declared timestamp when this record was last updated.
View raw schema
{
"key": "literal:self",
"type": "record",
"record": {
"type": "object",
"required": [
"links",
"createdAt"
],
"properties": {
"links": {
"type": "array",
"items": {
"ref": "#linkItem",
"type": "ref"
},
"description": "Array of external service links."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this record was created."
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this record was last updated."
}
}
},
"description": "Record containing links to external service profiles."
}