A record to introduce one user to the community
Record Key
any
Any valid record key
Properties
body
string
Required
Introduction text content
maxLength: 3000 bytesmaxGraphemes: 300 graphemescreatedAt
string
datetime
Required
Timestamp of the introduction creation
lang
string
language
Optional
Language of the introduction text
subject
string
did
Required
DID of the user being introduced
tags
array
of
string
Optional
Tags associated with the introduction
maxLength: 10 itemsView raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"body",
"createdAt"
],
"properties": {
"body": {
"type": "string",
"maxLength": 3000,
"description": "Introduction text content",
"maxGraphemes": 300
},
"lang": {
"type": "string",
"format": "language",
"description": "Language of the introduction text"
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 200,
"maxGraphemes": 20
},
"maxLength": 10,
"description": "Tags associated with the introduction"
},
"subject": {
"type": "string",
"format": "did",
"description": "DID of the user being introduced"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp of the introduction creation"
}
}
},
"description": "A record to introduce one user to the community"
}