diff --git a/static_common/common/schemas/ak.schema.json b/static_common/common/schemas/ak.schema.json index c9865d012dd629b4eeba96909693166d668a2543..c2356010864c632a4084ca975c52d06a3bcd7737 100644 --- a/static_common/common/schemas/ak.schema.json +++ b/static_common/common/schemas/ak.schema.json @@ -1,6 +1,6 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://example.com/schema/ak.schema.json", + "$id": "/schema/ak.schema.json", "title": "AK", "type": "object", "properties": { diff --git a/static_common/common/schemas/participant.schema.json b/static_common/common/schemas/participant.schema.json index 66425c995ffe8bf8edbb29943306cbeec58df761..09775329e207a03e8615ea84a97cd03b5aa8a11e 100644 --- a/static_common/common/schemas/participant.schema.json +++ b/static_common/common/schemas/participant.schema.json @@ -1,6 +1,6 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://example.com/schema/participant.schema.json", + "$id": "/schema/participant.schema.json", "title": "Participant", "type": "object", "properties": { diff --git a/static_common/common/schemas/room.schema.json b/static_common/common/schemas/room.schema.json index 53f8b5a948434f7f65acec6fee4e46f765b40152..da192a0e5bc0cc98c35f5df745e0d0938b7ce434 100644 --- a/static_common/common/schemas/room.schema.json +++ b/static_common/common/schemas/room.schema.json @@ -1,6 +1,6 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://example.com/schema/room.schema.json", + "$id": "/schema/room.schema.json", "title": "Room", "type": "object", "properties": { diff --git a/static_common/common/schemas/solver-input.json b/static_common/common/schemas/solver-input.json index f57eb92864f8b2a6a1512b0e3c736c89a0e4e2dc..afd8f412d1209b009dbbedbc1fc07d3f54804e5b 100644 --- a/static_common/common/schemas/solver-input.json +++ b/static_common/common/schemas/solver-input.json @@ -1,12 +1,12 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://example.com/schema/solver-input.schema.json", + "$id": "/schema/solver-input.schema.json", "type": "object", "properties": { - "aks": {"$ref": "schema/ak.schema.json"}, - "rooms": {"$ref": "schema/room.schema.json"}, - "participants": {"$ref": "schema/participant.schema.json"}, - "timeslots": {"$ref": "schema/timeslot.schema.json"}, + "aks": {"$ref": "/schema/ak.schema.json"}, + "rooms": {"$ref": "/schema/room.schema.json"}, + "participants": {"$ref": "/schema/participant.schema.json"}, + "timeslots": {"$ref": "/schema/timeslot.schema.json"}, "info": { "type": "object", "properties": { diff --git a/static_common/common/schemas/solver-output.json b/static_common/common/schemas/solver-output.json index 10d341e860aa1155dd66b02015a8faaa6dc2b015..20f09176fb5ba77ed5260c20eb1a6e1e3c698dee 100644 --- a/static_common/common/schemas/solver-output.json +++ b/static_common/common/schemas/solver-output.json @@ -1,9 +1,9 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://example.com/schema/solver-output.schema.json", + "$id": "/schema/solver-output.schema.json", "type": "object", "properties": { - "input": {"$ref": "schema/solver-input.schema.json"}, + "input": {"$ref": "/schema/solver-input.schema.json"}, "scheduled_aks": { "type": "array", "items": { diff --git a/static_common/common/schemas/timeslot.schema.json b/static_common/common/schemas/timeslot.schema.json index 8693ecdd832310d485d96c6144269dc94c887b95..6f8333e982090f7e950ffd4a34d13617b968c422 100644 --- a/static_common/common/schemas/timeslot.schema.json +++ b/static_common/common/schemas/timeslot.schema.json @@ -1,6 +1,6 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://example.com/schema/timeslot.schema.json", + "$id": "/schema/timeslot.schema.json", "title": "Timeslot", "type": "object", "required": ["info", "blocks"],