diff --git a/latest/examples/bf2raw/.config.json b/latest/examples/bf2raw/.config.json index 2525328c..4e74b1dd 100644 --- a/latest/examples/bf2raw/.config.json +++ b/latest/examples/bf2raw/.config.json @@ -1,3 +1,3 @@ { - "schema": "schemas/bf2raw.schema" + "schema": "schemas/bf2raw.schema.json" } diff --git a/latest/examples/label_strict/.config.json b/latest/examples/label_strict/.config.json index e7329dc9..1033ffbd 100644 --- a/latest/examples/label_strict/.config.json +++ b/latest/examples/label_strict/.config.json @@ -1,3 +1,3 @@ { - "schema": "schemas/strict_label.schema" + "schema": "schemas/strict_label.schema.json" } diff --git a/latest/examples/multiscales_strict/.config.json b/latest/examples/multiscales_strict/.config.json index b0469538..c1c4131f 100644 --- a/latest/examples/multiscales_strict/.config.json +++ b/latest/examples/multiscales_strict/.config.json @@ -1,3 +1,3 @@ { - "schema": "schemas/strict_image.schema" + "schema": "schemas/strict_image.schema.json" } diff --git a/latest/examples/ome/.config.json b/latest/examples/ome/.config.json index 8a611ccf..1aa97f34 100644 --- a/latest/examples/ome/.config.json +++ b/latest/examples/ome/.config.json @@ -1,3 +1,3 @@ { - "schema": "schemas/ome.schema" + "schema": "schemas/ome.schema.json" } diff --git a/latest/examples/plate_strict/.config.json b/latest/examples/plate_strict/.config.json index a49b1743..373e85ca 100644 --- a/latest/examples/plate_strict/.config.json +++ b/latest/examples/plate_strict/.config.json @@ -1,3 +1,3 @@ { - "schema": "schemas/strict_plate.schema" + "schema": "schemas/strict_plate.schema.json" } diff --git a/latest/examples/well_strict/.config.json b/latest/examples/well_strict/.config.json index 129ac69c..14077612 100644 --- a/latest/examples/well_strict/.config.json +++ b/latest/examples/well_strict/.config.json @@ -1,3 +1,3 @@ { - "schema": "schemas/strict_well.schema" + "schema": "schemas/strict_well.schema.json" } diff --git a/latest/schemas/bf2raw.schema b/latest/schemas/bf2raw.schema.json similarity index 100% rename from latest/schemas/bf2raw.schema rename to latest/schemas/bf2raw.schema.json diff --git a/latest/schemas/image.schema b/latest/schemas/image.schema.json similarity index 100% rename from latest/schemas/image.schema rename to latest/schemas/image.schema.json diff --git a/latest/schemas/label.schema b/latest/schemas/label.schema.json similarity index 100% rename from latest/schemas/label.schema rename to latest/schemas/label.schema.json diff --git a/latest/schemas/ome.schema b/latest/schemas/ome.schema.json similarity index 100% rename from latest/schemas/ome.schema rename to latest/schemas/ome.schema.json diff --git a/latest/schemas/plate.schema b/latest/schemas/plate.schema.json similarity index 100% rename from latest/schemas/plate.schema rename to latest/schemas/plate.schema.json diff --git a/latest/schemas/strict_image.schema b/latest/schemas/strict_image.schema.json similarity index 100% rename from latest/schemas/strict_image.schema rename to latest/schemas/strict_image.schema.json diff --git a/latest/schemas/strict_label.schema b/latest/schemas/strict_label.schema.json similarity index 100% rename from latest/schemas/strict_label.schema rename to latest/schemas/strict_label.schema.json diff --git a/latest/schemas/strict_plate.schema b/latest/schemas/strict_plate.schema.json similarity index 100% rename from latest/schemas/strict_plate.schema rename to latest/schemas/strict_plate.schema.json diff --git a/latest/schemas/strict_well.schema b/latest/schemas/strict_well.schema.json similarity index 100% rename from latest/schemas/strict_well.schema rename to latest/schemas/strict_well.schema.json diff --git a/latest/schemas/well.schema b/latest/schemas/well.schema.json similarity index 100% rename from latest/schemas/well.schema rename to latest/schemas/well.schema.json diff --git a/latest/tests/image_suite.json b/latest/tests/image_suite.json index bec52214..798482f3 100644 --- a/latest/tests/image_suite.json +++ b/latest/tests/image_suite.json @@ -1,7 +1,7 @@ { "description": "TBD", "schema": { - "id": "schemas/image.schema" + "id": "schemas/image.schema.json" }, "tests": [ { diff --git a/latest/tests/label_suite.json b/latest/tests/label_suite.json index 634225c8..3479eaea 100644 --- a/latest/tests/label_suite.json +++ b/latest/tests/label_suite.json @@ -1,7 +1,7 @@ { "description": "Tests for the image-label JSON schema", "schema": { - "id": "schemas/label.schema" + "id": "schemas/label.schema.json" }, "tests": [ { diff --git a/latest/tests/plate_suite.json b/latest/tests/plate_suite.json index 876d7c45..94b44520 100644 --- a/latest/tests/plate_suite.json +++ b/latest/tests/plate_suite.json @@ -1,7 +1,7 @@ { "description": "Tests for the plate JSON schema", "schema": { - "id": "schemas/plate.schema" + "id": "schemas/plate.schema.json" }, "tests": [ { diff --git a/latest/tests/strict_image_suite.json b/latest/tests/strict_image_suite.json index 7bff90ca..64fbe398 100644 --- a/latest/tests/strict_image_suite.json +++ b/latest/tests/strict_image_suite.json @@ -1,7 +1,7 @@ { "description": "TBD", "schema": { - "id": "schemas/strict_image.schema" + "id": "schemas/strict_image.schema.json" }, "tests": [ { diff --git a/latest/tests/strict_label_suite.json b/latest/tests/strict_label_suite.json index 9fe0cda2..c0b53f2a 100644 --- a/latest/tests/strict_label_suite.json +++ b/latest/tests/strict_label_suite.json @@ -1,7 +1,7 @@ { "description": "Tests for the strict image-label JSON schema", "schema": { - "id": "schemas/strict_label.schema" + "id": "schemas/strict_label.schema.json" }, "tests": [ { diff --git a/latest/tests/strict_plate_suite.json b/latest/tests/strict_plate_suite.json index 931cf7e7..83ad5e0f 100644 --- a/latest/tests/strict_plate_suite.json +++ b/latest/tests/strict_plate_suite.json @@ -1,7 +1,7 @@ { "description": "Tests for the strict plate JSON schema", "schema": { - "id": "schemas/strict_plate.schema" + "id": "schemas/strict_plate.schema.json" }, "tests": [ { diff --git a/latest/tests/strict_well_suite.json b/latest/tests/strict_well_suite.json index edfb2936..bbfce311 100644 --- a/latest/tests/strict_well_suite.json +++ b/latest/tests/strict_well_suite.json @@ -1,7 +1,7 @@ { "description": "Tests for the strict well JSON schema", "schema": { - "id": "schemas/strict_well.schema" + "id": "schemas/strict_well.schema.json" }, "tests": [ { diff --git a/latest/tests/well_suite.json b/latest/tests/well_suite.json index 0f752551..9443659c 100644 --- a/latest/tests/well_suite.json +++ b/latest/tests/well_suite.json @@ -1,7 +1,7 @@ { "description": "Tests for the well JSON schema", "schema": { - "id": "schemas/well.schema" + "id": "schemas/well.schema.json" }, "tests": [ {