# net.atmud.experimental.world

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

✓ This is the authoritative definition for this NSID.

## Description

EXPERIMENTAL (unstable): schema may change without notice.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:isja5viot4eab7qwzj3oucvx/net.atmud.experimental.world)
- [Documentation](https://lexicon.garden/lexicon/did:plc:isja5viot4eab7qwzj3oucvx/net.atmud.experimental.world/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:isja5viot4eab7qwzj3oucvx/net.atmud.experimental.world/examples)

## Definitions

### `net.atmud.experimental.world`

**Type**: `record`

EXPERIMENTAL (unstable): A world manifest published by the world's operator. The record key is the world slug.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` (uri) | No | Web entry point for the world. |
| `name` | `string` | Yes |  |
| `slug` | `string` | Yes |  |
| `sshHost` | `string` | No | SSH entry host (e.g. atmud.net:2222). |
| `summary` | `string` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "net.atmud.experimental.world",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "slug",
          "createdAt"
        ],
        "properties": {
          "url": {
            "type": "string",
            "format": "uri",
            "description": "Web entry point for the world."
          },
          "name": {
            "type": "string",
            "maxLength": 1280,
            "maxGraphemes": 128
          },
          "slug": {
            "type": "string",
            "maxLength": 128
          },
          "sshHost": {
            "type": "string",
            "maxLength": 256,
            "description": "SSH entry host (e.g. atmud.net:2222)."
          },
          "summary": {
            "type": "string",
            "maxLength": 5120,
            "maxGraphemes": 512
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "EXPERIMENTAL (unstable): A world manifest published by the world's operator. The record key is the world slug."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "EXPERIMENTAL (unstable): schema may change without notice."
}
```
