Record representing a minisite — a themed sub-site that groups selected articles under a custom slug and design.
tid
Timestamp-based ID
Properties
accentColor
string
Optional
Accent theme color as a CSS color value.
maxLength: 50 bytesarticles
array
of
ref
#articleRef
Optional
Ordered references to articles included in this minisite.
maxLength: 1000 itemsbackgroundColor
string
Optional
Background theme color as a CSS color value.
maxLength: 50 bytescreatedAt
string
datetime
Required
Timestamp when the minisite was created.
description
string
Optional
Short description of the minisite, shown in listings and metadata.
maxLength: 3000 bytesmaxGraphemes: 1000 graphemesdesignType
string
Optional
Visual layout style for the minisite.
maxLength: 50 bytesblog, document, portfolioglobalSlug
string
Optional
Globally unique slug for custom domain or top-level URL routing.
maxLength: 100 bytesicon
blob
Optional
Icon or logo image for the minisite.
maxSize: 1.0 MBname
string
Required
Display name of the minisite.
maxLength: 300 bytesmaxGraphemes: 100 graphemesprimaryColor
string
Optional
Primary theme color as a CSS color value (e.g. '#3b82f6').
maxLength: 50 bytesslug
string
Required
URL-safe identifier for the minisite. Must be lowercase alphanumeric with hyphens or underscores.
maxLength: 100 bytessourceRef
string
Optional
Branch or ref name for the source repository. Defaults to 'main'.
maxLength: 200 bytessourceRepo
string
Optional
Repository identifier when sourceType is 'tangled'.
maxLength: 500 bytessourceType
string
Optional
Content source type for the minisite.
maxLength: 50 byteslocal, tangledupdatedAt
string
datetime
Optional
Timestamp when the minisite was last updated.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"slug",
"createdAt"
],
"properties": {
"icon": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg",
"image/webp"
],
"maxSize": 1000000,
"description": "Icon or logo image for the minisite."
},
"name": {
"type": "string",
"maxLength": 300,
"description": "Display name of the minisite.",
"maxGraphemes": 100
},
"slug": {
"type": "string",
"maxLength": 100,
"description": "URL-safe identifier for the minisite. Must be lowercase alphanumeric with hyphens or underscores."
},
"articles": {
"type": "array",
"items": {
"ref": "#articleRef",
"type": "ref"
},
"maxLength": 1000,
"description": "Ordered references to articles included in this minisite."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the minisite was created."
},
"sourceRef": {
"type": "string",
"maxLength": 200,
"description": "Branch or ref name for the source repository. Defaults to 'main'."
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the minisite was last updated."
},
"designType": {
"type": "string",
"maxLength": 50,
"description": "Visual layout style for the minisite.",
"knownValues": [
"blog",
"document",
"portfolio"
]
},
"globalSlug": {
"type": "string",
"maxLength": 100,
"description": "Globally unique slug for custom domain or top-level URL routing."
},
"sourceRepo": {
"type": "string",
"maxLength": 500,
"description": "Repository identifier when sourceType is 'tangled'."
},
"sourceType": {
"type": "string",
"maxLength": 50,
"description": "Content source type for the minisite.",
"knownValues": [
"local",
"tangled"
]
},
"accentColor": {
"type": "string",
"maxLength": 50,
"description": "Accent theme color as a CSS color value."
},
"description": {
"type": "string",
"maxLength": 3000,
"description": "Short description of the minisite, shown in listings and metadata.",
"maxGraphemes": 1000
},
"primaryColor": {
"type": "string",
"maxLength": 50,
"description": "Primary theme color as a CSS color value (e.g. '#3b82f6')."
},
"backgroundColor": {
"type": "string",
"maxLength": 50,
"description": "Background theme color as a CSS color value."
}
}
},
"description": "Record representing a minisite — a themed sub-site that groups selected articles under a custom slug and design."
}