You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I then try to describe this through the event_metadata.json and add the principal and data objects with their sub-items:
"events": {
"ACTIVITY_DELETED": {
"description": "Event is raised when an Activity is deleted.",
"properties": {
"version": "Integer to define the event schema version",
"principal": {
"type": "USER or SYSTEM to identify the type for the principal",
"id": "ID of the principal (user ID or system identifier)",
"workspace_id": "Workspace ID for the principal"
},
"status": "One of the: SUCCESS, ERROR, IN_PROGRESS, CANCELLED",
"data": {
"workspace_id": "ID of the workspace for the Activity.",
"activity_id": "ID of the Activity.",
"document_ids": "List of Document IDs attached to the Activity."
}
},
When I run npm run build:slate gives out the following error:
❯ npm run build:slate
>[email protected] build:slate
> npm run clean --silent && npm run generate --silent -- --format=slate
[1/3] 🔎 Fetching data from AWS...
[2/3] 🧑🏻💻 Generating format for desired tool: slate ...
e Error: There is no such converter: type
at json2md (/home/aki/src/github/eventbridge-atlas/node_modules/json2md/lib/index.js:73:15)
at /home/aki/src/github/eventbridge-atlas/node_modules/json2md/lib/converters.js:178:20
at Array.map (<anonymous>)
at /home/aki/src/github/eventbridge-atlas/node_modules/json2md/lib/converters.js:177:13
at Array.map (<anonymous>)
at converters.table (/home/aki/src/github/eventbridge-atlas/node_modules/json2md/lib/converters.js:174:34)
at json2md (/home/aki/src/github/eventbridge-atlas/node_modules/json2md/lib/index.js:71:28)
at json2md (/home/aki/src/github/eventbridge-atlas/node_modules/json2md/lib/index.js:63:34)
at _callee$ (/home/aki/src/github/eventbridge-atlas/src/parsers/slate/src/init.js:79:3)
at tryCatch (/home/aki/src/github/eventbridge-atlas/node_modules/regenerator-runtime/runtime.js:63:40)
Removing or flattening the nested object for principal or data field removes the error and generates the docs, but I lose the nested structure and would need to use embedded HTML tags or similar for formatting it nicely.
The text was updated successfully, but these errors were encountered:
We've defined our own product specific schema for EventBridge that defines the:
principal
status
version
data
fields to be common fields with known values (data is the exception here).
data can be anything that the developers decide for the event type. EventBridge Atlas would be a great way to document the structure across all teams and make the schema and how events are used much more discoverable across our engineering org.
We have a following type of event format in use that contains nested JSON objects with the
detail
item in the EventBridge event:I then try to describe this through the
event_metadata.json
and add theprincipal
anddata
objects with their sub-items:When I run
npm run build:slate
gives out the following error:Removing or flattening the nested object for
principal
ordata
field removes the error and generates the docs, but I lose the nested structure and would need to use embedded HTML tags or similar for formatting it nicely.The text was updated successfully, but these errors were encountered: