app.ocho.plugin.getManifest

ocho-lexicons.ocho.app

Documentation

Get the manifest for an Ocho plugin.

main query

Get the manifest for an Ocho plugin.

Parameters

did string did Required

The did of the plugin to retrieve the manifest for

platform string Required

The platform for which to retrieve the plugin manifest

Output

Encodingapplication/json
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://api.bsky.social)
Parameters
The did of the plugin to retrieve the manifest for
The platform for which to retrieve the plugin manifest
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "ref": "app.ocho.plugin.defs#manifest",
      "type": "ref",
      "description": "The plugin manifest, which includes the plugin's metadata, launch asset, and extra information. TODO: Fix these types."
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "did",
      "platform"
    ],
    "properties": {
      "did": {
        "type": "string",
        "format": "did",
        "description": "The did of the plugin to retrieve the manifest for"
      },
      "platform": {
        "enum": [
          "ios",
          "android",
          "web"
        ],
        "type": "string",
        "description": "The platform for which to retrieve the plugin manifest"
      }
    }
  },
  "description": "Get the manifest for an Ocho plugin."
}

Lexicon Garden

@