From f18beecf3363b5923da0ab80ae5666bf934a815e Mon Sep 17 00:00:00 2001 From: Simon Harrer Date: Mon, 10 Mar 2025 15:56:14 +0100 Subject: [PATCH] fix build --- schema/odcs-json-schema-v3.0.2.json | 6 +++--- src/script/validate-examples.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/schema/odcs-json-schema-v3.0.2.json b/schema/odcs-json-schema-v3.0.2.json index e35eaff..0d9d64a 100644 --- a/schema/odcs-json-schema-v3.0.2.json +++ b/schema/odcs-json-schema-v3.0.2.json @@ -16,9 +16,9 @@ }, "apiVersion": { "type": "string", - "default": "v3.0.1", - "description": "Version of the standard used to build data contract. Default value is v3.0.1.", - "enum": ["v3.0.1", "v3.0.0", "v2.2.2", "v2.2.1", "v2.2.0"] + "default": "v3.0.2", + "description": "Version of the standard used to build data contract. Default value is v3.0.2.", + "enum": ["v3.0.2","v3.0.1", "v3.0.0", "v2.2.2", "v2.2.1", "v2.2.0"] }, "id": { "type": "string", diff --git a/src/script/validate-examples.sh b/src/script/validate-examples.sh index 74b6a5f..d98e2d5 100644 --- a/src/script/validate-examples.sh +++ b/src/script/validate-examples.sh @@ -7,7 +7,7 @@ LIGHT_BLUE='\033[1;34m' NC='\033[0m' script_dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) -json_schema_version=${JSON_SCHEMA_VERSION:-v3.0.1} +json_schema_version=${JSON_SCHEMA_VERSION:-v3.0.2} num_failed_validation=0 echo "Checking if $json_schema_version JSON schema is valid"