# nyc.noirot.cad.analysis

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

✓ This is the authoritative definition for this NSID.

## Description

A sidecar record for derived CAD project analysis.

## Links

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

## Definitions

### `nyc.noirot.cad.analysis`

**Type**: `record`

Derived, non-authoritative analysis facts for a CAD project or release.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `metrics` | `ref` → `nyc.noirot.cad.defs#geometryMetrics` | No |  |
| `subject` | `ref` → `nyc.noirot.cad.defs#projectRef` | Yes |  |
| `analyzer` | `string` | No | Name and optional version of the analysis system. |
| `findings` | `array` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `generatedAt` | `string` (datetime) | No |  |
| `manifestRootSha256` | `string` | No | Manifest hash this analysis was computed against. |

## Raw Schema

```json
{
  "id": "nyc.noirot.cad.analysis",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "metrics": {
            "ref": "nyc.noirot.cad.defs#geometryMetrics",
            "type": "ref"
          },
          "subject": {
            "ref": "nyc.noirot.cad.defs#projectRef",
            "type": "ref"
          },
          "analyzer": {
            "type": "string",
            "maxLength": 256,
            "description": "Name and optional version of the analysis system."
          },
          "findings": {
            "type": "array",
            "items": {
              "ref": "nyc.noirot.cad.defs#analysisFinding",
              "type": "ref"
            },
            "maxLength": 128
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "generatedAt": {
            "type": "string",
            "format": "datetime"
          },
          "manifestRootSha256": {
            "type": "string",
            "maxLength": 64,
            "minLength": 64,
            "description": "Manifest hash this analysis was computed against."
          }
        }
      },
      "description": "Derived, non-authoritative analysis facts for a CAD project or release."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A sidecar record for derived CAD project analysis."
}
```
