The specification a creation was built from. Enables build-in-public and reproducibility. NOTE: includes the user's original prompt — public by design, so the provisioning UX must make that explicit.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
ISO 8601 timestamp the spec was recorded.
pipelineStages
array
of
string
Optional
Foundry pipeline stages that ran.
prompt
string
Optional
The original natural-language request that drove the build.
maxLength: 8192 bytesspecDoc
blob
Optional
Full structured spec document (markdown).
maxSize: 1.0 MBsummary
string
Optional
Human-readable summary of the spec.
maxLength: 4096 bytestitle
string
Required
Short spec title.
maxLength: 256 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"createdAt"
],
"properties": {
"title": {
"type": "string",
"maxLength": 256,
"description": "Short spec title."
},
"prompt": {
"type": "string",
"maxLength": 8192,
"description": "The original natural-language request that drove the build."
},
"specDoc": {
"type": "blob",
"accept": [
"text/markdown"
],
"maxSize": 1048576,
"description": "Full structured spec document (markdown)."
},
"summary": {
"type": "string",
"maxLength": 4096,
"description": "Human-readable summary of the spec."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "ISO 8601 timestamp the spec was recorded."
},
"pipelineStages": {
"type": "array",
"items": {
"type": "string",
"knownValues": [
"mine",
"smelt",
"forge",
"architect",
"temper",
"ship"
]
},
"description": "Foundry pipeline stages that ran."
}
}
},
"description": "The specification a creation was built from. Enables build-in-public and reproducibility. NOTE: includes the user's original prompt — public by design, so the provisioning UX must make that explicit."
}