Skip to content

Commit da422e3

Browse files
authored
Merge pull request #1 from json-schema-org/master
pull in updates
2 parents b6fd7a0 + 9b834f2 commit da422e3

19 files changed

+1799
-342
lines changed

.travis.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
language: python
22
install:
3-
- pip install "xml2rfc<2.10"
3+
- pip install "xml2rfc~=2.20"
44
before_script:
55
- TAG=$(git tag -l --points-at HEAD)
66
script:
7-
- xml2rfc jsonschema-core.xml --basename=jsonschema-core-$TAG --text --html
8-
- xml2rfc jsonschema-validation.xml --basename=jsonschema-validation-$TAG --text --html
9-
- xml2rfc jsonschema-hyperschema.xml --basename=jsonschema-hyperschema-$TAG --text --html
7+
- xml2rfc -V
8+
- make all

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@ Please read our [guidelines for contributing](CONTRIBUTING.md).
1313
## Status
1414
For the current status of issues and pull requests, please see the following labels
1515

16-
[![Available](https://img.shields.io/waffle/label/json-schema-org/json-schema-spec/Status:%20Available.svg?style=flat)](https://github.com/json-schema-org/json-schema-spec/issues?q=is%3Aopen+is%3Aissue+label%3A%22Status%3A+Available%22) [![In Progress](https://img.shields.io/waffle/label/json-schema-org/json-schema-spec/Status:%20In%20Progress.svg?style=flat)](https://github.com/json-schema-org/json-schema-spec/labels/Status:%20In%20Progress) [![Review Needed](https://img.shields.io/waffle/label/json-schema-org/json-schema-spec/Status:%20Review%20Needed.svg?style=flat)](https://github.com/json-schema-org/json-schema-spec/labels/Status%3A%20Review%20Needed)
16+
[![Available](https://img.shields.io/github/issues/json-schema-org/json-schema-spec/Status:%20Available.svg?color=brightgreen)](https://github.com/json-schema-org/json-schema-spec/issues?q=is%3Aopen+is%3Aissue+label%3A%22Status%3A+Available%22) [![In Progress](https://img.shields.io/github/issues/json-schema-org/json-schema-spec/Status:%20In%20Progress.svg)](https://github.com/json-schema-org/json-schema-spec/labels/Status:%20In%20Progress) [![Review Needed](https://img.shields.io/github/issues/json-schema-org/json-schema-spec/Status:%20Review%20Needed.svg)](https://github.com/json-schema-org/json-schema-spec/labels/Status%3A%20Review%20Needed)
17+
18+
[![Critical](https://img.shields.io/github/issues/json-schema-org/json-schema-spec/Priority:%20Critical.svg?color=critical
19+
)](https://github.com/json-schema-org/json-schema-spec/labels/Priority%3A%20Critical) [![High](https://img.shields.io/github/issues/json-schema-org/json-schema-spec/Priority:%20High.svg?color=important)](https://github.com/json-schema-org/json-schema-spec/labels/Priority%3A%20High) [![Medium](https://img.shields.io/github/issues/json-schema-org/json-schema-spec/Priority:%20Medium.svg)](https://github.com/json-schema-org/json-schema-spec/labels/Priority%3A%20Medium) [![Low](https://img.shields.io/github/issues/json-schema-org/json-schema-spec/Priority:%20Low.svg)](https://github.com/json-schema-org/json-schema-spec/labels/Priority%3A%20Low)
1720

18-
[![Critical](https://img.shields.io/waffle/label/json-schema-org/json-schema-spec/Priority:%20Critical.svg?style=flat
19-
)](https://github.com/json-schema-org/json-schema-spec/labels/Priority%3A%20Critical) [![High](https://img.shields.io/waffle/label/json-schema-org/json-schema-spec/Priority:%20High.svg?style=flat)](https://github.com/json-schema-org/json-schema-spec/labels/Priority%3A%20High) [![Medium](https://img.shields.io/waffle/label/json-schema-org/json-schema-spec/Priority:%20Medium.svg?style=flat)](https://github.com/json-schema-org/json-schema-spec/labels/Priority%3A%20Medium) [![Low](https://img.shields.io/waffle/label/json-schema-org/json-schema-spec/Priority:%20Low.svg?style=flat)](https://github.com/json-schema-org/json-schema-spec/labels/Priority%3A%20Low)
2021

2122
Labels are assigned based on [Sensible Github Labels](https://github.com/Relequestual/sensible-github-labels).
2223

hyper-schema.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
{
2-
"$schema": "http://json-schema.org/draft-08/hyper-schema#",
3-
"$id": "http://json-schema.org/draft-08/hyper-schema",
2+
"$schema": "http://json-schema.org/draft/2019-04/hyper-schema#",
3+
"$id": "http://json-schema.org/draft/2019-04/hyper-schema",
4+
"$vocabulary": {
5+
"https://json-schema.org/draft/2019-04/vocab/core": true,
6+
"https://json-schema.org/draft/2019-04/vocab/applicator": true,
7+
"https://json-schema.org/draft/2019-04/vocab/validation": true,
8+
"https://json-schema.org/draft/2019-04/vocab/meta-data": true,
9+
"https://json-schema.org/draft/2019-04/vocab/format": true,
10+
"https://json-schema.org/draft/2019-04/vocab/content": true,
11+
"https://json-schema.org/draft/2019-04/vocab/hyper-schema": true
12+
},
413
"$recursiveAnchor": true,
514

615
"title": "JSON Hyper-Schema",
7-
"$ref": "http://json-schema.org/draft-08/schema",
8-
"properties": {
9-
"base": {
10-
"type": "string",
11-
"format": "uri-template"
12-
},
13-
"links": {
14-
"type": "array",
15-
"items": {
16-
"$ref": "http://json-schema.org/draft-08/links"
17-
}
18-
}
19-
},
16+
"allOf": [
17+
{"$ref": "http://json-schema.org/draft/2019-04/schema"},
18+
{"$ref": "http://json-schema.org/draft/2019-04/meta/hyper-schema"}
19+
],
2020
"links": [
2121
{
2222
"rel": "self",

0 commit comments

Comments
 (0)