# computer.aesthetic.news

> 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.news)
- [Documentation](https://lexicon.garden/lexicon/did:plc:k3k3wknzkcnekbnyde4dbatz/computer.aesthetic.news/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:k3k3wknzkcnekbnyde4dbatz/computer.aesthetic.news/examples)

## Definitions

### `computer.aesthetic.news`

**Type**: `record`

A news headline from Aesthetic Computer

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `ref` | `string` | No | Reference to source database record for bidirectional sync |
| `body` | `string` | No | Full article body text (optional) |
| `link` | `string` (uri) | No | External link to full article (optional) |
| `tags` | `array` | No | Category tags for the news item |
| `when` | `string` (datetime) | Yes | When the news was published (ISO 8601) |
| `headline` | `string` | Yes | The news headline text |

## Raw Schema

```json
{
  "id": "computer.aesthetic.news",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "headline",
          "when"
        ],
        "properties": {
          "ref": {
            "type": "string",
            "description": "Reference to source database record for bidirectional sync"
          },
          "body": {
            "type": "string",
            "maxLength": 10000,
            "description": "Full article body text (optional)"
          },
          "link": {
            "type": "string",
            "format": "uri",
            "description": "External link to full article (optional)"
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 64
            },
            "maxLength": 10,
            "description": "Category tags for the news item"
          },
          "when": {
            "type": "string",
            "format": "datetime",
            "description": "When the news was published (ISO 8601)"
          },
          "headline": {
            "type": "string",
            "maxLength": 300,
            "description": "The news headline text"
          }
        }
      },
      "description": "A news headline from Aesthetic Computer"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
