-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@graph declaration missing from network_connection.json #88
Comments
@gwebb-case - Putting an |
Also! Don't worry about indenting anything. This repo is set up to install a dedicated instance of |
@ajnelson-nist - Before I plough on and make the change, I just want to confirm that if the expected structure of the examples is always meant to be: Is correct, then the "@graph" collection change should actually result in the following changes from the original example:
The reason for asking is that Oresteia.json, which I generally try to use as the guidance example if I get stuck, has the same structure as network_connection.json, which I'm about to change:. If the above changes are correct, then I am happy to make the similar changes to Oresteia.json if no one is already assigned to do so. |
Oh dear, good catch on Oresteia. Please consider re-shaping things to use the You should just be fixing the |
No worries, I will leave raising the issue to request altering Orestia.json until after the uuid issue I am currently working on has been made. The pull request for this issue fix "network_connection.json" will be completed after the branch fork to alter any uuid changes. |
I found the following problem when checking the validity of UUID definitions in the file 'network_connection.json'
The "@graph" collection definition is missing from the example
"@graph": [
]
the proposed change is to insert the missing lines of code in the network_connection.json example between lines 15-16 and 452-453, and indent the lines 16-452 accordingly.
i.e
1 {
2 "@context": {
:
15 },
"@graph": [
16 "@id": "kb:bundle-2a13e958a-d975-41aa-b1bb-029d2b6707ab",
:
452 ]
]
453 }
The text was updated successfully, but these errors were encountered: