bedoc-action.json
Schema URL
{ "$schema": "https://schema.gesslar.dev/bedoc/v1/bedoc-action.json"}Properties
| Property | Type | Required | Description |
|---|---|---|---|
accepts | object | ||
provides | object |
Full Schema
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://schema.gesslar.dev/bedoc/v1/bedoc-action.json", "title": "BeDoc Action Schema", "type": "object", "properties": { "accepts": { "type": "object", "properties": { "type": { "const": "object" } }, "required": [ "type" ] }, "provides": { "type": "object", "properties": { "type": { "const": "object" } }, "required": [ "type" ] } }, "oneOf": [ { "required": [ "accepts" ] }, { "required": [ "provides" ] } ]}