# com.atmosphereaccount.registry.update

> Published by [atmosphereaccount.com](https://lexicon.garden/identity/did:plc:ab7uvkn4kyf7l7prl26pz4r2)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:ab7uvkn4kyf7l7prl26pz4r2/com.atmosphereaccount.registry.update)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ab7uvkn4kyf7l7prl26pz4r2/com.atmosphereaccount.registry.update/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ab7uvkn4kyf7l7prl26pz4r2/com.atmosphereaccount.registry.update/examples)

## Definitions

### `com.atmosphereaccount.registry.update`

**Type**: `record`

A project-owned What's New update for an Atmosphere registry profile. Each record represents one release/update note and may optionally link to Tangled commit metadata.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `body` | `string` | Yes | Update notes shown in What's New and version history. |
| `title` | `string` | Yes | Short update title. |
| `source` | `string` | No | Where the update came from. Omitted means manual. |
| `version` | `string` | No | Optional version or release label. |
| `createdAt` | `string` (datetime) | Yes |  |
| `updatedAt` | `string` (datetime) | No |  |
| `tangledRepoUrl` | `string` (uri) | No | Optional Tangled repository URL used for future sync provenance. |
| `tangledCommitUrl` | `string` (uri) | No | Optional Tangled commit URL related to this update. |

## Raw Schema

```json
{
  "id": "com.atmosphereaccount.registry.update",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "body",
          "createdAt"
        ],
        "properties": {
          "body": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "description": "Update notes shown in What's New and version history.",
            "maxGraphemes": 1000
          },
          "title": {
            "type": "string",
            "maxLength": 80,
            "minLength": 1,
            "description": "Short update title.",
            "maxGraphemes": 80
          },
          "source": {
            "type": "string",
            "maxLength": 32,
            "description": "Where the update came from. Omitted means manual.",
            "knownValues": [
              "manual",
              "tangled"
            ]
          },
          "version": {
            "type": "string",
            "maxLength": 32,
            "description": "Optional version or release label.",
            "maxGraphemes": 32
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "maxLength": 64
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime",
            "maxLength": 64
          },
          "tangledRepoUrl": {
            "type": "string",
            "format": "uri",
            "maxLength": 512,
            "description": "Optional Tangled repository URL used for future sync provenance."
          },
          "tangledCommitUrl": {
            "type": "string",
            "format": "uri",
            "maxLength": 512,
            "description": "Optional Tangled commit URL related to this update."
          }
        }
      },
      "description": "A project-owned What's New update for an Atmosphere registry profile. Each record represents one release/update note and may optionally link to Tangled commit metadata."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
