Public protocol or app listing in the AT Store directory.
Record Key
tid
Timestamp-based ID
Properties
categorySlug
string
Required
Single browse category key (e.g. protocol/pds).
maxLength: 256 bytescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
No description available.
maxLength: 20000 bytesexternalUrl
string
uri
Required
Primary product or project URL.
maxLength: 2048 bytesheroImage
string
uri
Required
Hero / cover image (HTTPS URL).
maxLength: 2048 bytesicon
string
uri
Required
A valid URI.
maxLength: 2048 bytesname
string
Required
No description available.
maxLength: 640 bytesscreenshots
array
of
string
uri
Optional
No description available.
maxLength: 20 itemsslug
string
Required
Stable URL slug; unique within the publishing account.
maxLength: 512 bytesminLength: 1 bytestagline
string
Required
No description available.
maxLength: 300 bytesupdatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"slug",
"name",
"tagline",
"externalUrl",
"icon",
"heroImage",
"categorySlug",
"createdAt",
"updatedAt"
],
"properties": {
"icon": {
"type": "string",
"format": "uri",
"maxLength": 2048
},
"name": {
"type": "string",
"maxLength": 640
},
"slug": {
"type": "string",
"maxLength": 512,
"minLength": 1,
"description": "Stable URL slug; unique within the publishing account."
},
"tagline": {
"type": "string",
"maxLength": 300
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"heroImage": {
"type": "string",
"format": "uri",
"maxLength": 2048,
"description": "Hero / cover image (HTTPS URL)."
},
"updatedAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 20000
},
"externalUrl": {
"type": "string",
"format": "uri",
"maxLength": 2048,
"description": "Primary product or project URL."
},
"screenshots": {
"type": "array",
"items": {
"type": "string",
"format": "uri",
"maxLength": 2048
},
"maxLength": 20
},
"categorySlug": {
"type": "string",
"maxLength": 256,
"description": "Single browse category key (e.g. protocol/pds)."
}
}
},
"description": "Public protocol or app listing in the AT Store directory."
}