Skip to content

Commit

Permalink
Fixes #164 - ref should be , audiences should be required
Browse files Browse the repository at this point in the history
  • Loading branch information
jpgough-ms committed Apr 22, 2024
1 parent 8b2df99 commit 8cc1ace
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions calm/draft/2024-04/meta/interface.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"required": ["node"]
},
"host-port-interface": {
"ref": "#/defs/interface-type",
"$ref": "#/defs/interface-type",
"properties": {
"host": {
"type": "string"
Expand All @@ -36,7 +36,7 @@
"required": ["host", "port"]
},
"hostname-interface": {
"ref": "#/defs/interface-type",
"$ref": "#/defs/interface-type",
"properties": {
"hostname": {
"type": "string"
Expand All @@ -45,7 +45,7 @@
"required": "hostname"
},
"path-interface": {
"ref": "#/defs/interface-type",
"$ref": "#/defs/interface-type",
"properties": {
"path": {
"type": "string"
Expand All @@ -54,7 +54,7 @@
"required": "path"
},
"oauth2-audience-interface": {
"ref": "#/defs/interface-type",
"$ref": "#/defs/interface-type",
"properties": {
"audiences": {
"type": "array",
Expand All @@ -63,7 +63,8 @@
"type": "string"
}
}
}
},
"required": "audiences"
}
}
}

0 comments on commit 8cc1ace

Please sign in to comment.