aboutsummaryrefslogtreecommitdiffstats
path: root/examples/examples-acm/src/main/resources/schemas/ACEventType.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/examples-acm/src/main/resources/schemas/ACEventType.json')
-rw-r--r--examples/examples-acm/src/main/resources/schemas/ACEventType.json32
1 files changed, 32 insertions, 0 deletions
diff --git a/examples/examples-acm/src/main/resources/schemas/ACEventType.json b/examples/examples-acm/src/main/resources/schemas/ACEventType.json
new file mode 100644
index 000000000..1e10c33fe
--- /dev/null
+++ b/examples/examples-acm/src/main/resources/schemas/ACEventType.json
@@ -0,0 +1,32 @@
+{
+ "$schema": "http://json-schema.org/draft-04/schema#",
+ "type": "object",
+ "properties": {
+ "elementId": {
+ "type": "object",
+ "properties": {
+ "name": {
+ "type": "string"
+ },
+ "version": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "version"
+ ]
+ },
+ "message": {
+ "type": "string"
+ },
+ "messageType": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "elementId",
+ "message",
+ "messageType"
+ ]
+}