Skip to content

Commit

Permalink
KAZOO-3296: remove the required property now that it is enforced
Browse files Browse the repository at this point in the history
  • Loading branch information
k-anderson committed Feb 7, 2015
1 parent 31884b3 commit c238b02
Showing 1 changed file with 4 additions and 14 deletions.
18 changes: 4 additions & 14 deletions applications/crossbar/priv/couchdb/schemas/connectivity.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
},
"account": {
"type": "object",
"required": true,
"properties": {
"auth_realm": {
"type": "string",
Expand All @@ -18,7 +17,6 @@
},
"trunks": {
"type": "integer",
"required": true,
"minimum": 0,
"description": "The number of two-way trunks this account has purchased"
},
Expand All @@ -27,15 +25,11 @@
"properties": {
"cid_name": {
"type": "string",
"minLength": 1,
"maxLength": 35,
"required": true
"maxLength": 35
},
"cid_number": {
"type": "string",
"minLength": 1,
"maxLength": 35,
"required": true
"maxLength": 35
}
}
},
Expand All @@ -44,15 +38,11 @@
"properties": {
"cid_name": {
"type": "string",
"minLength": 1,
"maxLength": 35,
"required": true
"maxLength": 35
},
"cid_number": {
"type": "string",
"minLength": 1,
"maxLength": 35,
"required": true
"maxLength": 35
}
}
}
Expand Down

0 comments on commit c238b02

Please sign in to comment.