You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$comment: server urls are resolved against the HTTP request uri itself (template matching ideally happens first, because of url encoding, but matching the template parts separately may produce ambiguous results, so in my implementation I concatenate the server url template with the path template and then match that against the entire uri)
23
26
type: array
24
27
items:
25
28
$ref: '#/$defs/server'
@@ -68,6 +71,7 @@ $defs:
68
71
description:
69
72
type: string
70
73
termsOfService:
74
+
$comment: resolved against the resolved version of $self
71
75
type: string
72
76
format: uri-reference
73
77
contact:
@@ -89,6 +93,7 @@ $defs:
89
93
name:
90
94
type: string
91
95
url:
96
+
$comment: resolved against the resolved version of $self
92
97
type: string
93
98
format: uri-reference
94
99
email:
@@ -106,6 +111,7 @@ $defs:
106
111
identifier:
107
112
type: string
108
113
url:
114
+
$comment: resolved against the resolved version of $self
109
115
type: string
110
116
format: uri-reference
111
117
required:
@@ -225,6 +231,7 @@ $defs:
225
231
type: object
226
232
properties:
227
233
$ref:
234
+
$comment: resolved against the resolved version of $self
228
235
type: string
229
236
format: uri-reference
230
237
summary:
@@ -327,6 +334,7 @@ $defs:
327
334
description:
328
335
type: string
329
336
url:
337
+
$comment: resolved against ???
330
338
type: string
331
339
format: uri-reference
332
340
required:
@@ -682,6 +690,7 @@ $defs:
682
690
type: string
683
691
value: true
684
692
externalValue:
693
+
$comment: resolved against the resolved version of $self
685
694
type: string
686
695
format: uri-reference
687
696
allOf:
@@ -719,6 +728,7 @@ $defs:
719
728
type: object
720
729
properties:
721
730
operationRef:
731
+
$comment: resolved against the resolved version of $self
722
732
type: string
723
733
format: uri-reference
724
734
operationId:
@@ -825,6 +835,7 @@ $defs:
825
835
type: object
826
836
properties:
827
837
$ref:
838
+
$comment: resolved against the resolved version of $self
828
839
type: string
829
840
format: uri-reference
830
841
summary:
@@ -929,6 +940,7 @@ $defs:
929
940
flows:
930
941
$ref: '#/$defs/oauth-flows'
931
942
oauth2MetadataUrl:
943
+
$comment: resolved against the matching and de-templated server url
932
944
type: string
933
945
format: uri-reference
934
946
required:
@@ -944,6 +956,7 @@ $defs:
944
956
then:
945
957
properties:
946
958
openIdConnectUrl:
959
+
$comment: resolved against the matching and de-templated server url
947
960
type: string
948
961
format: uri-reference
949
962
required:
@@ -977,6 +990,7 @@ $defs:
977
990
978
991
$defs:
979
992
implicit:
993
+
$comment: references are resolved against the matching and de-templated server url
980
994
type: object
981
995
properties:
982
996
authorizationUrl:
@@ -994,6 +1008,7 @@ $defs:
994
1008
unevaluatedProperties: false
995
1009
996
1010
password:
1011
+
$comment: references are resolved against the matching and de-templated server url
997
1012
type: object
998
1013
properties:
999
1014
tokenUrl:
@@ -1011,6 +1026,7 @@ $defs:
1011
1026
unevaluatedProperties: false
1012
1027
1013
1028
client-credentials:
1029
+
$comment: references are resolved against the matching and de-templated server url
1014
1030
type: object
1015
1031
properties:
1016
1032
tokenUrl:
@@ -1028,6 +1044,7 @@ $defs:
1028
1044
unevaluatedProperties: false
1029
1045
1030
1046
authorization-code:
1047
+
$comment: references are resolved against the matching and de-templated server url
1031
1048
type: object
1032
1049
properties:
1033
1050
authorizationUrl:
@@ -1049,6 +1066,7 @@ $defs:
1049
1066
unevaluatedProperties: false
1050
1067
1051
1068
device-authorization:
1069
+
$comment: references are resolved against the matching and de-templated server url
0 commit comments