Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hyper-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"href": {
"description": "a URI template, as defined by RFC 6570",
"type": "string",
"format": "uritemplate"
"format": "uri-template"
},
"hrefSchema": {
"description": "a schema for validating user input to the URI template, where the input is in the form of a JSON object with property names matching variable names in \"href\"",
Expand Down
7 changes: 4 additions & 3 deletions jsonschema-validation.xml
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@
</t>
</section>

<section title="uriref">
<section title="uri-reference">
<t>
This attribute applies to string instances.
</t>
Expand All @@ -859,7 +859,7 @@
</t>
</section>

<section title="uritemplate">
<section title="uri-template">
<t>
This attribute applies to string instances.
</t>
Expand All @@ -869,7 +869,7 @@
</t>
</section>

<section title="jsonpointer">
<section title="json-pointer">
<t>
This attribute applies to string instances.
</t>
Expand Down Expand Up @@ -965,6 +965,7 @@
<list style="hanging">
<t hangText="draft-wright-json-schema-validation-01">
<list style="symbols">
<t>Standardized on hyphenated format names</t>
<t>Split apart additionalItems/items</t>
<t>Reworked properties/patternProperties/additionalProperties definition</t>
<t>Added "examples" keyword</t>
Expand Down
2 changes: 1 addition & 1 deletion links.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"href": {
"description": "a URI template, as defined by RFC 6570",
"type": "string",
"format": "uritemplate"
"format": "uri-template"
},
"hrefSchema": {
"description": "a schema for validating user input to the URI template, where the input is in the form of a JSON object with property names matching variable names in \"href\"",
Expand Down
4 changes: 2 additions & 2 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@
"properties": {
"$id": {
"type": "string",
"format": "uriref"
"format": "uri-reference"
},
"$schema": {
"type": "string",
"format": "uri"
},
"$ref": {
"type": "string",
"format": "uriref"
"format": "uri-reference"
},
"title": {
"type": "string"
Expand Down