Skip to content

Commit

Permalink
Fix defs reference (required by latest jsonschema-py)
Browse files Browse the repository at this point in the history
'#$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.
  • Loading branch information
peterdesmet committed Jun 26, 2024
1 parent d6544d8 commit ad13ce4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion camtrap-dp-profile.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit ad13ce4

Please sign in to comment.