org.chaoticharmonylabs.orbit.create

chaoticharmonylabs.org

Documentation

Create a new orbit.

main procedure

Create a new orbit.

Input

Encodingapplication/json
description string Optional

No description available.

maxLength: 256 bytes
feeds object Optional

No description available.

name string Required

No description available.

maxLength: 64 bytesminLength: 1 bytes

Output

Encodingapplication/json
cid stringcid Required

A content identifier (CID) referencing immutable data.

uri stringat-uri Required

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://bsky.social)
Enter valid JSON for the request body
View raw schema
{
  "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."
}

Lexicon Garden

@