# site.filae.simulation.artifact

> Published by [filae.site](https://lexicon.garden/identity/did:plc:dcb6ifdsru63appkbffy3foy)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:dcb6ifdsru63appkbffy3foy/site.filae.simulation.artifact)
- [Documentation](https://lexicon.garden/lexicon/did:plc:dcb6ifdsru63appkbffy3foy/site.filae.simulation.artifact/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:dcb6ifdsru63appkbffy3foy/site.filae.simulation.artifact/examples)

## Definitions

### `site.filae.simulation.artifact`

**Type**: `record`

An interactive simulation artifact

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `slug` | `string` | No | URL-friendly identifier |
| `order` | `integer` | No | Display order in listings |
| `title` | `string` | Yes |  |
| `topics` | `array` | No |  |
| `codeUrl` | `string` (uri) | No | URL to the simulation code |
| `liveUrl` | `string` (uri) | No | URL to the live simulation page |
| `research` | `string` | No | Scientific context and sources |
| `createdAt` | `string` (datetime) | Yes |  |
| `description` | `string` | Yes | Full description of the simulation |
| `shortDescription` | `string` | No | One-line description for listings |

## Raw Schema

```json
{
  "id": "site.filae.simulation.artifact",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "description",
          "createdAt"
        ],
        "properties": {
          "slug": {
            "type": "string",
            "maxLength": 200,
            "description": "URL-friendly identifier"
          },
          "order": {
            "type": "integer",
            "description": "Display order in listings"
          },
          "title": {
            "type": "string",
            "maxLength": 200,
            "maxGraphemes": 100
          },
          "topics": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 64
            },
            "maxLength": 10
          },
          "codeUrl": {
            "type": "string",
            "format": "uri",
            "description": "URL to the simulation code"
          },
          "liveUrl": {
            "type": "string",
            "format": "uri",
            "description": "URL to the live simulation page"
          },
          "research": {
            "type": "string",
            "maxLength": 5000,
            "description": "Scientific context and sources"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 2000,
            "description": "Full description of the simulation",
            "maxGraphemes": 1000
          },
          "shortDescription": {
            "type": "string",
            "maxLength": 200,
            "description": "One-line description for listings",
            "maxGraphemes": 100
          }
        }
      },
      "description": "An interactive simulation artifact"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
