# computer.haha.san.app

> Published by [san.haha.computer](https://lexicon.garden/identity/did:plc:pyp36qey354yxslrcavwzqja)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:pyp36qey354yxslrcavwzqja/computer.haha.san.app)
- [Documentation](https://lexicon.garden/lexicon/did:plc:pyp36qey354yxslrcavwzqja/computer.haha.san.app/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:pyp36qey354yxslrcavwzqja/computer.haha.san.app/examples)

## Definitions

### `computer.haha.san.app`

**Type**: `record`

A sandbox app: Lua source plus metadata, published by its author. The record key is a slug derived from the name, so re-publishing a name is an edit rather than a new app.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `code` | `string` | Yes | The Lua source, inline. |
| `name` | `string` | Yes | Human-readable name. The record key is derived from it. |
| `createdAt` | `string` (datetime) | Yes |  |
| `updatedAt` | `string` (datetime) | Yes |  |
| `description` | `string` | No | One line on what the app does. |

## Raw Schema

```json
{
  "id": "computer.haha.san.app",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "code",
          "createdAt",
          "updatedAt"
        ],
        "properties": {
          "code": {
            "type": "string",
            "maxLength": 65536,
            "description": "The Lua source, inline."
          },
          "name": {
            "type": "string",
            "maxLength": 640,
            "description": "Human-readable name. The record key is derived from it."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 2000,
            "description": "One line on what the app does."
          }
        }
      },
      "description": "A sandbox app: Lua source plus metadata, published by its author. The record key is a slug derived from the name, so re-publishing a name is an edit rather than a new app."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
