@jambonz/schema 0.3.13 → 0.3.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jambonz/schema",
3
- "version": "0.3.13",
3
+ "version": "0.3.14",
4
4
  "description": "JSON Schema definitions and validation for jambonz verb applications",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -7,7 +7,7 @@
7
7
  "type": "object",
8
8
  "properties": {
9
9
  "verb": {
10
- "const": "conference"
10
+ "enum": ["conference", "room"]
11
11
  },
12
12
  "id": {
13
13
  "type": "string",
@@ -0,0 +1,8 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://jambonz.org/schema/verbs/room",
4
+ "minVersion": "0.9.6",
5
+ "title": "Room",
6
+ "description": "Places the caller into a multi-party room. `room` is a synonym for `conference` with identical shape and behavior, using the Voice-AI-friendly name; prefer `room` in new applications. The shape is defined entirely by the conference verb (referenced here) so the two never drift.",
7
+ "$ref": "conference"
8
+ }