# app.bulleted.space

> Published by [ngerakines.me](https://lexicon.garden/identity/did:plc:cbkjy5n7bk3ax2wplmtjofq2)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:cbkjy5n7bk3ax2wplmtjofq2/app.bulleted.space)
- [Documentation](https://lexicon.garden/lexicon/did:plc:cbkjy5n7bk3ax2wplmtjofq2/app.bulleted.space/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:cbkjy5n7bk3ax2wplmtjofq2/app.bulleted.space/examples)

## Definitions

### `app.bulleted.space`

**Type**: `record`

A permissioned space holding outlines. The record key is the space key; 'self' is the default space.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | No | Display name for the space. |
| `owner` | `string` (did) | Yes | DID that owns the space. |
| `spaceKey` | `string` | Yes | The 0016 space key. |
| `createdAt` | `string` (datetime) | Yes | When the space was created. |
| `spaceType` | `string` (nsid) | No | The 0016 space type NSID. Absent means app.bulleted.space. |
| `description` | `string` | No | Longer summary of the space. |

## Raw Schema

```json
{
  "id": "app.bulleted.space",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "owner",
          "spaceKey",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 1000,
            "description": "Display name for the space."
          },
          "owner": {
            "type": "string",
            "format": "did",
            "description": "DID that owns the space."
          },
          "spaceKey": {
            "type": "string",
            "maxLength": 512,
            "description": "The 0016 space key."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the space was created."
          },
          "spaceType": {
            "type": "string",
            "format": "nsid",
            "description": "The 0016 space type NSID. Absent means app.bulleted.space."
          },
          "description": {
            "type": "string",
            "maxLength": 3000,
            "description": "Longer summary of the space."
          }
        }
      },
      "description": "A permissioned space holding outlines. The record key is the space key; 'self' is the default space."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
