An academic paper published on papers.aesthetic.computer
Record Key
tid
Timestamp-based ID
Properties
languages
array
of
string
Optional
Available language codes (e.g., en, da, es, zh)
maxLength: 10 itemspdfUrl
string
uri
Required
URL to the PDF on papers.aesthetic.computer
maxLength: 512 bytesref
string
Optional
Paper directory key for bidirectional reference
maxLength: 64 bytesrevisions
integer
Optional
Revision count
minimum: 0slug
string
Required
Site PDF name (e.g., 'aesthetic-computer-26-arxiv')
maxLength: 128 bytestitle
string
Required
Paper title
maxLength: 300 byteswhen
string
datetime
Required
Publication date (ISO 8601)
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"slug",
"pdfUrl",
"when"
],
"properties": {
"ref": {
"type": "string",
"maxLength": 64,
"description": "Paper directory key for bidirectional reference"
},
"slug": {
"type": "string",
"maxLength": 128,
"description": "Site PDF name (e.g., 'aesthetic-computer-26-arxiv')"
},
"when": {
"type": "string",
"format": "datetime",
"description": "Publication date (ISO 8601)"
},
"title": {
"type": "string",
"maxLength": 300,
"description": "Paper title"
},
"pdfUrl": {
"type": "string",
"format": "uri",
"maxLength": 512,
"description": "URL to the PDF on papers.aesthetic.computer"
},
"languages": {
"type": "array",
"items": {
"type": "string",
"maxLength": 5
},
"maxLength": 10,
"description": "Available language codes (e.g., en, da, es, zh)"
},
"revisions": {
"type": "integer",
"minimum": 0,
"description": "Revision count"
}
}
},
"description": "An academic paper published on papers.aesthetic.computer"
}