st.lifepo.event

lexicon.store View official

Documentation

Adds a new life event to the authenticated user's profile.

main procedure

Adds a new life event to the authenticated user's profile.

Input

Encodingapplication/json
description string Optional

No description available.

endDate stringdatetime Optional

An RFC 3339 formatted timestamp.

startDate stringdatetime Required

An RFC 3339 formatted timestamp.

title string Required

No description available.

Output

Encodingapplication/json
uri stringat-uri Required

AT URI of the created event record.

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": [
        "title",
        "startDate"
      ],
      "properties": {
        "title": {
          "type": "string"
        },
        "endDate": {
          "type": "string",
          "format": "datetime"
        },
        "startDate": {
          "type": "string",
          "format": "datetime"
        },
        "description": {
          "type": "string"
        }
      }
    },
    "encoding": "application/json"
  },
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "uri"
      ],
      "properties": {
        "uri": {
          "type": "string",
          "format": "at-uri",
          "description": "AT URI of the created event record."
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Adds a new life event to the authenticated user's profile."
}

Lexicon Garden

@