# computer.aesthetic.paper

> Published by [aesthetic.computer](https://lexicon.garden/identity/did:plc:k3k3wknzkcnekbnyde4dbatz)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:k3k3wknzkcnekbnyde4dbatz/computer.aesthetic.paper)
- [Documentation](https://lexicon.garden/lexicon/did:plc:k3k3wknzkcnekbnyde4dbatz/computer.aesthetic.paper/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:k3k3wknzkcnekbnyde4dbatz/computer.aesthetic.paper/examples)

## Definitions

### `computer.aesthetic.paper`

**Type**: `record`

An academic paper published on papers.aesthetic.computer

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `ref` | `string` | No | Paper directory key for bidirectional reference |
| `slug` | `string` | Yes | Site PDF name (e.g., 'aesthetic-computer-26-arxiv') |
| `when` | `string` (datetime) | Yes | Publication date (ISO 8601) |
| `title` | `string` | Yes | Paper title |
| `pdfUrl` | `string` (uri) | Yes | URL to the PDF on papers.aesthetic.computer |
| `languages` | `array` | No | Available language codes (e.g., en, da, es, zh) |
| `revisions` | `integer` | No | Revision count |

## Raw Schema

```json
{
  "id": "computer.aesthetic.paper",
  "defs": {
    "main": {
      "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"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
