I'm attempting to use a remote schema (https://raw.githubusercontent.com/edonv/obs-scheduler/refs/heads/main/config-schema.json). I have the AJAX option enabled. I have multiple subschemas in definitions that are each referenced at least once. One of the subschemas in definitions is throwing an error for not being found though. The errors in the console reads as:
jsoneditor.js:2 reference:'https://raw.githubusercontent.com/edonv/obs-scheduler/refs/heads/main/config-schema.json#/definitions/DateString' not found!
jsoneditor.js:2 Uncaught TypeError: Cannot read properties of undefined (reading 'type')
The exact same schema works without issue if it's a JS object literal in a local file, and that method works too even if the definitions/DateString subschema is just (referencing the definition from the remote URL):
"DateString": {
"$ref": "https://raw.githubusercontent.com/edonv/obs-scheduler/refs/heads/main/config-schema.json#definitions/DateString"
},
Any ideas?
I'm attempting to use a remote schema (https://raw.githubusercontent.com/edonv/obs-scheduler/refs/heads/main/config-schema.json). I have the AJAX option enabled. I have multiple subschemas in
definitionsthat are each referenced at least once. One of the subschemas indefinitionsis throwing an error for not being found though. The errors in the console reads as:The exact same schema works without issue if it's a JS object literal in a local file, and that method works too even if the
definitions/DateStringsubschema is just (referencing the definition from the remote URL):Any ideas?