Skip to content
This repository was archived by the owner on Nov 2, 2023. It is now read-only.

Commit b18feec

Browse files
authored
Merge pull request #217 from oboukli/feat/use-https-for-external-urls
Use HTTPS for external URLs where applicable
2 parents 42837d5 + dbcdcc4 commit b18feec

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ The two examples below are step-by-step guides into building a schema:
3030
- [a simple example](example1.md) which covers a classical product catalog description.
3131
- [a more advanced example](example2.md), using JSON Schema to describe filesystem entries in a Unix-like /etc/fstab file.
3232

33-
The [Space Telescope Science Institute](http://www.stsci.edu/) has also published a [guide aimed at schema authors](http://spacetelescope.github.io/understanding-json-schema/).
33+
The [Space Telescope Science Institute](http://www.stsci.edu/) has also published a [guide aimed at schema authors](https://spacetelescope.github.io/understanding-json-schema/).

implementations.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ For example, the only incompatibilities between draft-04 and draft-06 involve `e
137137

138138
- .NET
139139
- [Json.NET](https://www.newtonsoft.com/jsonschema) (AGPL-3.0) - generates schemas from .NET types
140-
- [NJsonSchema](http://NJsonSchema.org) - (Ms-PL) - generates schemas from .NET types, see issue [574](https://github.com/RSuter/NJsonSchema/issues/574) for draft-06+ support progress
140+
- [NJsonSchema](https://github.com/RSuter/NJsonSchema/) - (Ms-PL) - generates schemas from .NET types, see issue [574](https://github.com/RSuter/NJsonSchema/issues/574) for draft-06+ support progress
141141
- Golang
142142
- [qri-io/jsonschema](https://github.com/qri-io/jsonschema)(MIT) - idiomatic go implementation with custom validator support, coding to and from json, rich error returns *supports Draft 7*
143143
- PHP
@@ -150,7 +150,7 @@ For example, the only incompatibilities between draft-04 and draft-06 involve `e
150150
- Scala
151151
- [Schema Guru](https://github.com/snowplow/schema-guru) (Apache 2.0) - CLI util, Spark Job and Web UI for deriving JSON Schemas out of corpus of JSON instances; see issue [178](https://github.com/snowplow/schema-guru/issues/178) for progress towards draft-06+ support
152152
- Online (web tool)
153-
- [jsonschema.net](http://www.jsonschema.net) - generates schemas from example data
153+
- [jsonschema.net](https://www.jsonschema.net/) - generates schemas from example data
154154
- [quicktype.io](https://app.quicktype.io/#l=schema) - infer JSON Schema from samples, and generate TypeScript, C++, go, Java, C#, Swift, etc. types from JSON Schema
155155

156156

@@ -189,10 +189,10 @@ Various levels of support for UI generation primarily from the validation vocabu
189189
- [JSON Editor](https://github.com/jdorn/json-editor) (MIT)
190190
- [JSON Form (joshfire)](https://github.com/joshfire/jsonform) (joshfire) (MIT)
191191
- [Json Forms (brutusin)](https://github.com/brutusin/json-forms) (brutusin) (MIT)
192-
- [JSONForms (jsonforms.io)](http://jsonforms.io) (EclipseSource) (MIT)
193-
- [Jsonary](http://jsonary.com/) (MIT)
192+
- [JSONForms (jsonforms.io)](https://jsonforms.io/) (EclipseSource) (MIT)
193+
- [Jsonary](https://github.com/jsonary-js/) (MIT)
194194
- [Liform-react](https://github.com/Limenius/liform-react) (MIT)
195-
- [Metawidget](http://metawidget.org/) (LGPL)
195+
- [Metawidget](https://metawidget.org/) (LGPL)
196196
- [pure-form webcomponent](https://github.com/john-doherty/pure-form) (MIT)
197197
- [React JSON Schema Form (mozilla)](https://github.com/mozilla-services/react-jsonschema-form) (Apache 2)
198198
- [React Schema Form (networknt)](https://github.com/networknt/react-schema-form) (MIT)
@@ -247,11 +247,11 @@ _None currently support draft-06 or later._
247247
_TODO: Sort by draft support._
248248

249249
- [Liquid XML Studio 2016](https://www.liquid-technologies.com/json-schema-editor) - *Graphical JSON schema editor for draft 4, context sensitive intellisense for JSON documents.*
250-
- [Visual Studio 2013](http://www.visualstudio.com/) - *Auto-completion and tooltips based on JSON schema draft 3 and draft 4*
250+
- [Visual Studio 2013](https://www.visualstudio.com/) - *Auto-completion and tooltips based on JSON schema draft 3 and draft 4*
251251
- [JSONBuddy](http://www.json-buddy.com/) - *Text and grid-style JSON editor and validator with context sensitive entry-helpers and sample data generation based on JSON schema. Support for draft 4 and draft 6.*
252252
- [ReSharper 2016.1](https://www.jetbrains.com/resharper/) - *code completion, inspections and quick fixes for JSON schema in Visual Studio 2010 - 2015, including support for JSON Path and regular expressions for schema editing*
253253
- [Visual Studio Code](https://code.visualstudio.com/) - *Schema driven code completion, hovers and validation for editing JSON files (including schemas)*
254-
- [JSONEditor Online](http://jsoneditoronline.org) - *View, edit, format, and validate JSON online*
254+
- [JSONEditor Online](https://jsoneditoronline.org/) - *View, edit, format, and validate JSON online*
255255
- [JSON Schema Editor](https://json-schema-editor.tangramjs.com) - *An intuitive editor for JSON schema online*
256256
- [JSON Editor](https://json-editor.tangramjs.com) - *An online, schema-aware editor for JSON document*
257257
- [Eclipse IDE](https://www.eclipse.org/downloads/eclipse-packages) - *Rich JSON edition supporting schema for instantaneous validation and error reporting, completion, documentation.*

index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Interested? Check out:
9191
- the growing list of [JSON (Hyper-)Schema software](implementations.html)
9292

9393
We encourage updating to the latest specification, as described by the draft-07 meta-schemas. However, if you are still using draft-04, you may be interested in:
94-
- this [excellent guide](http://spacetelescope.github.io/understanding-json-schema/) for schema authors, from the [Space Telescope Science Institute](http://www.stsci.edu/)
94+
- this [excellent guide](https://spacetelescope.github.io/understanding-json-schema/) for schema authors, from the [Space Telescope Science Institute](http://www.stsci.edu/)
9595

9696
Questions? Feeling helpful? Get involved on:
9797

specification.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ The specification is split into three parts, Core, Validation, and Hyper-Schema,
2727
| [Relative JSON Pointers](latest/relative-json-pointer.html) | extends the JSON Pointer syntax for relative pointers |
2828

2929
They are also available on the IETF main site:
30-
* [draft-handrews-json-schema-01 (core)](http://tools.ietf.org/html/draft-handrews-json-schema-01)
31-
* [draft-handrews-json-schema-validation-01](http://tools.ietf.org/html/draft-handrews-json-schema-validation-01)
32-
* [draft-handrews-json-schema-hyperschema-01](http://tools.ietf.org/html/draft-handrews-json-schema-hyperschema-01) ([errata](https://github.com/json-schema-org/json-schema-spec/issues?q=label%3Aerrata+label%3Ahypermedia))
30+
* [draft-handrews-json-schema-01 (core)](https://tools.ietf.org/html/draft-handrews-json-schema-01)
31+
* [draft-handrews-json-schema-validation-01](https://tools.ietf.org/html/draft-handrews-json-schema-validation-01)
32+
* [draft-handrews-json-schema-hyperschema-01](https://tools.ietf.org/html/draft-handrews-json-schema-hyperschema-01) ([errata](https://github.com/json-schema-org/json-schema-spec/issues?q=label%3Aerrata+label%3Ahypermedia))
3333
* [draft-handrews-relative-json-pointer-01](https://tools.ietf.org/html/draft-handrews-relative-json-pointer-01)
3434

3535
Meta-schemas
@@ -47,7 +47,7 @@ _If you are accessing the above meta-schema links **from a web browser**, you wi
4747
Migrating from older drafts
4848
-------------
4949

50-
The release notes discuss the changes impacting users and implementors:
50+
The release notes discuss the changes impacting users and implementers:
5151

5252
- JSON Schema Core and Validation
5353
- [Draft-06 to Draft-07](draft-07/json-schema-release-notes.html)

0 commit comments

Comments
 (0)