Skip to content

Commit b0c1472

Browse files
committed
URI change
Signed-off-by: Clemens Vasters <clemens@vasters.com>
1 parent 46d90c0 commit b0c1472

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

draft-vasters-json-structure-core.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,7 @@ Example with inline `type`:
697697

698698
~~~ json
699699
{
700-
"$schema": "https://json-structure.github.io/meta/core/v0/#",
700+
"$schema": "https://json-structure.org/meta/core/v0/#",
701701
"$id": "https://schemas.vasters.com/TypeName",
702702
"name": "TypeName",
703703
"type": "object",
@@ -711,7 +711,7 @@ Example with `$root`:
711711

712712
~~~ json
713713
{
714-
"$schema": "https://json-structure.github.io/meta/core/v0/#",
714+
"$schema": "https://json-structure.org/meta/core/v0/#",
715715
"$id": "https://schemas.vasters.com/TypeName",
716716
"$root": "#/definitions/TypeName",
717717
"definitions": {
@@ -729,7 +729,7 @@ Example with the root type in a namespace:
729729

730730
~~~ json
731731
{
732-
"$schema": "https://json-structure.github.io/meta/core/v0/#",
732+
"$schema": "https://json-structure.org/meta/core/v0/#",
733733
"$id": "https://schemas.vasters.com/TypeName",
734734
"$root": "#/definitions/Namespace/TypeName",
735735
"definitions": {
@@ -765,7 +765,7 @@ Example:
765765

766766
~~~ json
767767
{
768-
"$schema": "https://json-structure.github.io/meta/core/v0/#",
768+
"$schema": "https://json-structure.org/meta/core/v0/#",
769769
"name": "TypeName",
770770
"type": "object",
771771
"properties": {
@@ -792,7 +792,7 @@ Example:
792792

793793
~~~ json
794794
{
795-
"$schema": "https://json-structure.github.io/meta/core/v0/#",
795+
"$schema": "https://json-structure.org/meta/core/v0/#",
796796
"$id": "https://schemas.vasters.com/TypeName",
797797
"name": "TypeName",
798798
"type": "object",
@@ -816,7 +816,7 @@ Example:
816816

817817
~~~ json
818818
{
819-
"$schema": "https://json-structure.github.io/meta/core/v0/#",
819+
"$schema": "https://json-structure.org/meta/core/v0/#",
820820
"$id": "https://schemas.vasters.com/TypeName",
821821
"$root": "#/definitions/Namespace/TypeName",
822822
"definitions": {
@@ -850,7 +850,7 @@ Example:
850850

851851
~~~ json
852852
{
853-
"$schema": "https://json-structure.github.io/meta/core/v0/#",
853+
"$schema": "https://json-structure.org/meta/core/v0/#",
854854
"$id": "https://schemas.vasters.com/TypeName",
855855
"definitions": {
856856
"Namespace": {
@@ -877,7 +877,7 @@ Example:
877877

878878
~~~ json
879879
{
880-
"$schema": "https://json-structure.github.io/meta/core/v0/#",
880+
"$schema": "https://json-structure.org/meta/core/v0/#",
881881
"$id": "https://schemas.vasters.com/TypeName",
882882
"properties": {
883883
"name1": { "type": { "$ref": "#/definitions/Namespace/TypeName" }},
@@ -1378,7 +1378,7 @@ Example:
13781378

13791379
~~~ json
13801380
{
1381-
"$schema": "https://json-structure.github.io/meta/core/v0/#",
1381+
"$schema": "https://json-structure.org/meta/core/v0/#",
13821382
"definitions" : {
13831383
"Address": {
13841384
"abstract": true,
@@ -1413,7 +1413,7 @@ might be applied to any _StreetAddress_ types in a document:
14131413

14141414
~~~ json
14151415
{
1416-
"$schema": "https://json-structure.github.io/meta/core/v0/#",
1416+
"$schema": "https://json-structure.org/meta/core/v0/#",
14171417
"$id": "https://schemas.vasters.com/Addresses",
14181418
"$root": "#/definitions/StreetAddress",
14191419
"$offers": {

0 commit comments

Comments
 (0)