Skip to content

Commit 9fdd8ef

Browse files
committed
Better meta-schema, fix typo.
Properly specify the meta-schema, which for some reason was only a description. We don't put descriptions in the meta-schema anymore, but we do put type information. Not sure what happened there.
1 parent 5d881d8 commit 9fdd8ef

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

jsonschema-hyperschema.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@
657657
<section title="Missing values" anchor="missingValues">
658658
<t>
659659
Sometimes, the appropriate values will not be available. In many
660-
cases, the URI Template behavior of simply removing varibles that
660+
cases, the URI Template behavior of simply removing variables that
661661
do not have a value will be appropriate. An example of this is
662662
optional query parameters, the presence or absence of which does
663663
not change the nature of the link relation type.

links.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@
2525
]
2626
},
2727
"hrefRequired": {
28-
"description": "an array of URI template variables names from \"href\" which must be filled out with some value, either from the instance or user input"
28+
"type": "array",
29+
"items": {
30+
"type": "string"
31+
}
2932
},
3033
"rel": {
3134
"type": "string"

0 commit comments

Comments
 (0)