# nyc.noirot.cad.project

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

✓ This is the authoritative definition for this NSID.

## Description

A mutable CAD project metadata record.

## Links

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

## Definitions

### `nyc.noirot.cad.project`

**Type**: `record`

Metadata for a CAD project, optionally mirrored from Zoo.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `tags` | `array` | No |  |
| `title` | `string` | Yes |  |
| `license` | `ref` → `nyc.noirot.cad.defs#license` | No |  |
| `manifest` | `ref` → `nyc.noirot.cad.defs#fileManifest` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `thumbnail` | `blob` | No | Thumbnail image for the project. |
| `updatedAt` | `string` (datetime) | No |  |
| `moderation` | `ref` → `nyc.noirot.cad.defs#moderationContext` | No |  |
| `projectUrl` | `string` (uri) | No | Canonical web URL for the project, if any. |
| `zooProject` | `ref` → `nyc.noirot.cad.defs#zooProjectRef` | No |  |
| `description` | `string` | No |  |

## Raw Schema

```json
{
  "id": "nyc.noirot.cad.project",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "createdAt"
        ],
        "properties": {
          "tags": {
            "type": "array",
            "items": {
              "ref": "nyc.noirot.cad.defs#tag",
              "type": "ref"
            },
            "maxLength": 32
          },
          "title": {
            "type": "string",
            "maxLength": 1200,
            "maxGraphemes": 120
          },
          "license": {
            "ref": "nyc.noirot.cad.defs#license",
            "type": "ref"
          },
          "manifest": {
            "ref": "nyc.noirot.cad.defs#fileManifest",
            "type": "ref"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "thumbnail": {
            "type": "blob",
            "accept": [
              "image/*"
            ],
            "maxSize": 1000000,
            "description": "Thumbnail image for the project."
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          },
          "moderation": {
            "ref": "nyc.noirot.cad.defs#moderationContext",
            "type": "ref"
          },
          "projectUrl": {
            "type": "string",
            "format": "uri",
            "description": "Canonical web URL for the project, if any."
          },
          "zooProject": {
            "ref": "nyc.noirot.cad.defs#zooProjectRef",
            "type": "ref"
          },
          "description": {
            "type": "string",
            "maxLength": 20000,
            "maxGraphemes": 2000
          }
        }
      },
      "description": "Metadata for a CAD project, optionally mirrored from Zoo."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A mutable CAD project metadata record."
}
```
