An interactive simulation artifact
Record Key
tid
Timestamp-based ID
Properties
codeUrl
string
uri
Optional
URL to the simulation code
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Required
Full description of the simulation
maxLength: 2000 bytesmaxGraphemes: 1000 graphemesliveUrl
string
uri
Optional
URL to the live simulation page
order
integer
Optional
Display order in listings
research
string
Optional
Scientific context and sources
maxLength: 5000 bytesshortDescription
string
Optional
One-line description for listings
maxLength: 200 bytesmaxGraphemes: 100 graphemesslug
string
Optional
URL-friendly identifier
maxLength: 200 bytestitle
string
Required
No description available.
maxLength: 200 bytesmaxGraphemes: 100 graphemestopics
array
of
string
Optional
No description available.
maxLength: 10 itemsView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"description",
"createdAt"
],
"properties": {
"slug": {
"type": "string",
"maxLength": 200,
"description": "URL-friendly identifier"
},
"order": {
"type": "integer",
"description": "Display order in listings"
},
"title": {
"type": "string",
"maxLength": 200,
"maxGraphemes": 100
},
"topics": {
"type": "array",
"items": {
"type": "string",
"maxLength": 64
},
"maxLength": 10
},
"codeUrl": {
"type": "string",
"format": "uri",
"description": "URL to the simulation code"
},
"liveUrl": {
"type": "string",
"format": "uri",
"description": "URL to the live simulation page"
},
"research": {
"type": "string",
"maxLength": 5000,
"description": "Scientific context and sources"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 2000,
"description": "Full description of the simulation",
"maxGraphemes": 1000
},
"shortDescription": {
"type": "string",
"maxLength": 200,
"description": "One-line description for listings",
"maxGraphemes": 100
}
}
},
"description": "An interactive simulation artifact"
}