# net.atview.external.figmaplugin

> Published by [atview.net](https://lexicon.garden/identity/did:plc:ycd3zyxa6iru5fiplr3un6nr)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:ycd3zyxa6iru5fiplr3un6nr/net.atview.external.figmaplugin)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ycd3zyxa6iru5fiplr3un6nr/net.atview.external.figmaplugin/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ycd3zyxa6iru5fiplr3un6nr/net.atview.external.figmaplugin/examples)

## Definitions

### `net.atview.external.figmaplugin`

**Type**: `record`

External reference to a Figma plugin. Captures the canonical plugin identifier alongside human-friendly metadata and links.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `id` | `string` | Yes | Canonical Figma plugin identifier (the numeric id from the Figma Community plugin URL). |
| `docs` | `string` (uri) | No | URL of the plugin's documentation. |
| `href` | `string` (uri) | No | Primary external URL for the plugin (e.g. Figma Community page). |
| `name` | `string` | Yes | Display name of the plugin as shown in user interfaces. |
| `github` | `string` (uri) | No | URL of the plugin's GitHub repository. |
| `createdAt` | `string` (datetime) | Yes |  |
| `description` | `string` | No | Short description of the plugin. |

## Raw Schema

```json
{
  "id": "net.atview.external.figmaplugin",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "createdAt",
          "name",
          "id"
        ],
        "properties": {
          "id": {
            "type": "string",
            "maxLength": 1000,
            "description": "Canonical Figma plugin identifier (the numeric id from the Figma Community plugin URL).",
            "maxGraphemes": 214
          },
          "docs": {
            "type": "string",
            "format": "uri",
            "description": "URL of the plugin's documentation."
          },
          "href": {
            "type": "string",
            "format": "uri",
            "description": "Primary external URL for the plugin (e.g. Figma Community page)."
          },
          "name": {
            "type": "string",
            "maxLength": 1000,
            "description": "Display name of the plugin as shown in user interfaces.",
            "maxGraphemes": 100
          },
          "github": {
            "type": "string",
            "format": "uri",
            "description": "URL of the plugin's GitHub repository."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 10000,
            "description": "Short description of the plugin.",
            "maxGraphemes": 1000
          }
        }
      },
      "description": "External reference to a Figma plugin. Captures the canonical plugin identifier alongside human-friendly metadata and links."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
