# nyc.noirot.cad.release

> Published by [franknoirot.co](https://lexicon.garden/identity/did:plc:5dwcnpy3p6afki4rwv7gqegd)

✓ This is the authoritative definition for this NSID.

## Description

A published version of a CAD project.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:5dwcnpy3p6afki4rwv7gqegd/nyc.noirot.cad.release)
- [Documentation](https://lexicon.garden/lexicon/did:plc:5dwcnpy3p6afki4rwv7gqegd/nyc.noirot.cad.release/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:5dwcnpy3p6afki4rwv7gqegd/nyc.noirot.cad.release/examples)

## Definitions

### `nyc.noirot.cad.release`

**Type**: `record`

Versioned release metadata for a CAD project.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `title` | `string` | No |  |
| `license` | `ref` → `nyc.noirot.cad.defs#license` | No |  |
| `project` | `ref` → `nyc.noirot.cad.defs#projectRef` | Yes |  |
| `version` | `string` | Yes | Project-defined release version. |
| `manifest` | `ref` → `nyc.noirot.cad.defs#fileManifest` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `zooProject` | `ref` → `nyc.noirot.cad.defs#zooProjectRef` | No |  |
| `releaseNotes` | `string` | No |  |

## Raw Schema

```json
{
  "id": "nyc.noirot.cad.release",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "project",
          "version",
          "manifest",
          "createdAt"
        ],
        "properties": {
          "title": {
            "type": "string",
            "maxLength": 1200,
            "maxGraphemes": 120
          },
          "license": {
            "ref": "nyc.noirot.cad.defs#license",
            "type": "ref"
          },
          "project": {
            "ref": "nyc.noirot.cad.defs#projectRef",
            "type": "ref"
          },
          "version": {
            "type": "string",
            "maxLength": 128,
            "description": "Project-defined release version."
          },
          "manifest": {
            "ref": "nyc.noirot.cad.defs#fileManifest",
            "type": "ref"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "zooProject": {
            "ref": "nyc.noirot.cad.defs#zooProjectRef",
            "type": "ref"
          },
          "releaseNotes": {
            "type": "string",
            "maxLength": 20000,
            "maxGraphemes": 2000
          }
        }
      },
      "description": "Versioned release metadata for a CAD project."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A published version of a CAD project."
}
```
