Description
Since the release of this lib there has now been a formalisation of HQDM into RDF(S). It would be good to see this be updated to reflect the most recent agreed structure of the model.
The source for this is here.
Notable changes:
- The formal namespace is now declared.
- Permutations of underscores on relationships are now resolved
- Naming convention of RDF is camel case, and all names reflect this practice.
Basic Example
Instead of:
export const functional_system = HQDM.createThing(
thing,
HQDM_NS + 'functional_system'
);
It would be:
export const functional_system = HQDM.createThing(
thing,
HQDM_NS + 'FunctionalSystem'
);
Drawbacks
Any written SPARQL utilised by users would need to be updated. This should now be considered a v1 release in line with the version of the ontology.
Unresolved questions
No response
Description
Since the release of this lib there has now been a formalisation of HQDM into RDF(S). It would be good to see this be updated to reflect the most recent agreed structure of the model.
The source for this is here.
Notable changes:
Basic Example
Instead of:
It would be:
Drawbacks
Any written SPARQL utilised by users would need to be updated. This should now be considered a v1 release in line with the version of the ontology.
Unresolved questions
No response