A list of type to component exports
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
exports
array
of
ref
#export
Required
Type to component mappings
name
string
Required
Short slug for the pack (e.g. "core", "ui")
maxLength: 64 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"exports"
],
"properties": {
"name": {
"type": "string",
"maxLength": 64,
"description": "Short slug for the pack (e.g. \"core\", \"ui\")"
},
"exports": {
"type": "array",
"items": {
"ref": "#export",
"type": "ref"
},
"description": "Type to component mappings"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A list of type to component exports"
}