forked from 2600hz/kazoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modify kapi_globals module to use kapi_definition module (2600hz#6385)
- Loading branch information
1 parent
d3d54f4
commit c5d5831
Showing
6 changed files
with
619 additions
and
271 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
applications/crossbar/priv/couchdb/schemas/kapi.globals.reply.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"_id": "kapi.globals.reply", | ||
"description": "AMQP API for globals.reply", | ||
"properties": { | ||
"Event-Category": { | ||
"enum": [ | ||
"globals" | ||
], | ||
"type": "string" | ||
}, | ||
"Event-Name": { | ||
"enum": [ | ||
"reply" | ||
], | ||
"type": "string" | ||
}, | ||
"Name": { | ||
"type": "string" | ||
}, | ||
"Reply": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"Reply" | ||
], | ||
"type": "object" | ||
} |
Oops, something went wrong.