No description available.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
When this definition was first created.
description
string
Required
Human-readable description of what the badge represents.
maxLength: 5000 bytesmaxGraphemes: 2000 graphemesissuer
ref
#issuerMetadata
Optional
No description available.
png
blob
Required
PNG artwork hosted on the issuer PDS.
maxSize: 1.0 MBtitle
string
Required
Short label for the badge.
maxLength: 200 bytesminLength: 1 bytesupdatedAt
string
datetime
Required
When this definition was last updated.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"description",
"png",
"createdAt",
"updatedAt"
],
"properties": {
"png": {
"type": "blob",
"accept": [
"image/png"
],
"maxSize": 1048576,
"description": "PNG artwork hosted on the issuer PDS."
},
"title": {
"type": "string",
"maxLength": 200,
"minLength": 1,
"description": "Short label for the badge."
},
"issuer": {
"ref": "#issuerMetadata",
"type": "ref"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When this definition was first created."
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "When this definition was last updated."
},
"description": {
"type": "string",
"maxLength": 5000,
"description": "Human-readable description of what the badge represents.",
"maxGraphemes": 2000
}
}
}
}