# org.chaoticharmonylabs.orbit.create

> Published by [chaoticharmonylabs.org](https://lexicon.garden/identity/did:plc:mqmbvlnt6fcqqboqqcg3b7d4)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:mqmbvlnt6fcqqboqqcg3b7d4/org.chaoticharmonylabs.orbit.create)
- [Documentation](https://lexicon.garden/lexicon/did:plc:mqmbvlnt6fcqqboqqcg3b7d4/org.chaoticharmonylabs.orbit.create/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:mqmbvlnt6fcqqboqqcg3b7d4/org.chaoticharmonylabs.orbit.create/examples)

## Definitions

### `org.chaoticharmonylabs.orbit.create`

**Type**: `procedure`

Create a new orbit.

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes |  |
| `feeds` | `object` | No |  |
| `description` | `string` | No |  |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cid` | `string` (cid) | Yes |  |
| `uri` | `string` (at-uri) | Yes |  |

## Raw Schema

```json
{
  "id": "org.chaoticharmonylabs.orbit.create",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "required": [
            "name"
          ],
          "properties": {
            "name": {
              "type": "string",
              "maxLength": 64,
              "minLength": 1
            },
            "feeds": {
              "type": "object",
              "properties": {
                "text": {
                  "type": "string",
                  "format": "at-uri"
                },
                "photo": {
                  "type": "string",
                  "format": "at-uri"
                },
                "video": {
                  "type": "string",
                  "format": "at-uri"
                }
              }
            },
            "description": {
              "type": "string",
              "maxLength": 256
            }
          }
        },
        "encoding": "application/json"
      },
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "uri",
            "cid"
          ],
          "properties": {
            "cid": {
              "type": "string",
              "format": "cid"
            },
            "uri": {
              "type": "string",
              "format": "at-uri"
            }
          }
        },
        "encoding": "application/json"
      },
      "description": "Create a new orbit."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
