From ad13ce4c96c9fbab7ca0d24d2bd4575c18e4fe31 Mon Sep 17 00:00:00 2001 From: Peter Desmet Date: Wed, 26 Jun 2024 11:09:06 +0200 Subject: [PATCH] Fix defs reference (required by latest jsonschema-py) '#$defs/version' is not a valid anchor, neither as a plain name anchor nor as a JSON Pointer. You may have intended to use '#/$defs/version', as the slash is required *before each segment* of a JSON pointer. --- camtrap-dp-profile.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/camtrap-dp-profile.json b/camtrap-dp-profile.json index c9404a2..6b1cb91 100644 --- a/camtrap-dp-profile.json +++ b/camtrap-dp-profile.json @@ -57,7 +57,7 @@ "description": "URL of the used Camtrap DP Table Schema version (e.g. `https://raw.githubusercontent.com/tdwg/camtrap-dp/1.0/deployments-table-schema.json`).", "allOf": [ { - "$ref": "#$defs/version" + "$ref": "#/$defs/version" }, { "type": "string",