Manifest & Registration
The Manifest
{
"plugin_id": "acme-billing",
"name": "Acme Billing",
"version": "1.2.0",
"base_url": "https://acme.example.com/plugin",
"menu_items": [
{
"id": "invoices",
"label": "Invoices",
"view": { "method": "GET", "path": "/invoices" },
"actions": [
{ "id": "create", "method": "POST", "path": "/invoices" },
{ "id": "void", "method": "DELETE", "path": "/invoices/:id" }
]
}
],
"data_schemas": [
{
"collection": "invoices",
"schema": { "...JSON Schema..." },
"indexes": [ { "fields": ["customer_id"] } ]
}
]
}Field Definitions
Field
Description
Registration Flow
Last updated
Was this helpful?

