Daniel Holmgren 2ea27e340a
Ozone lexicons (#2288)
* lexicons

* clean up old admin schemas

* codegen

* renaming all routes

* fix more

* fix snaps

* fix test

* format

* hook up ozone routes on pds

* publish next version

* build branch

* dont build branch
2024-03-12 18:42:11 -05:00

27 lines
633 B
JSON

{
"lexicon": 1,
"id": "tools.ozone.communication.listTemplates",
"defs": {
"main": {
"type": "query",
"description": "Get list of all communication templates.",
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["communicationTemplates"],
"properties": {
"communicationTemplates": {
"type": "array",
"items": {
"type": "ref",
"ref": "tools.ozone.communication.defs#templateView"
}
}
}
}
}
}
}
}