# work.lexical.work.identifier.imdb

> Published by [lexical.work](https://lexicon.garden/identity/did:plc:6acm263n23glqje6xrd2mgbt)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:6acm263n23glqje6xrd2mgbt/work.lexical.work.identifier.imdb)
- [Documentation](https://lexicon.garden/lexicon/did:plc:6acm263n23glqje6xrd2mgbt/work.lexical.work.identifier.imdb/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:6acm263n23glqje6xrd2mgbt/work.lexical.work.identifier.imdb/examples)

## Definitions

### `work.lexical.work.identifier.imdb`

**Type**: `record`

A record asserting a mapping between a work and an IMDB identifier.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` (uri) | No | The provider's canonical URL for this identifier. |
| `work` | `string` (at-uri) | Yes | AT URI of the work being identified. |
| `provider` | `string` | Yes | The identifier provider (e.g. 'imdb', 'wikidata', 'tmdb'). |
| `providerValue` | `string` | Yes | The identifier value assigned by the provider. |

## Raw Schema

```json
{
  "id": "work.lexical.work.identifier.imdb",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "work",
          "provider",
          "providerValue"
        ],
        "properties": {
          "url": {
            "type": "string",
            "format": "uri",
            "maxLength": 2048,
            "description": "The provider's canonical URL for this identifier."
          },
          "work": {
            "type": "string",
            "format": "at-uri",
            "required": true,
            "maxLength": 2048,
            "description": "AT URI of the work being identified."
          },
          "provider": {
            "type": "string",
            "const": "imdb",
            "required": true,
            "maxLength": 128,
            "description": "The identifier provider (e.g. 'imdb', 'wikidata', 'tmdb').",
            "maxGraphemes": 128
          },
          "providerValue": {
            "type": "string",
            "required": true,
            "maxLength": 256,
            "description": "The identifier value assigned by the provider.",
            "maxGraphemes": 256
          }
        }
      },
      "description": "A record asserting a mapping between a work and an IMDB identifier."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
