-
Notifications
You must be signed in to change notification settings - Fork 5
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
Would it be possible to have a direct link between the shape tree and its description? #72
Comments
I agree with @elf-pavlik that the current spec make it really hard to simply find a description for a given shapetree. For example if I want to find the english label for a
Depending on the way data are stored, this may mean going through dozens of resources... just to get a single description! IMO this breaks the whole interest of linked data, where you can find more information about something just by following related links. Imagine if the whole web worked with inverse links like you do here! 😄
What is wrong with modifying the shapetree definition if a new language is added ? |
My approach is to always have backlinks for those inverse links. Since directions of predicates are pretty arbitrary, I treat subjects and objects equally. Since shape definitions support inverse relations https://shex.io/shex-primer/#inverse-properties |
So, if I understand well, you copy these lines... solidtrees:desc-en\#Project
shapetrees:inDescriptionSet solidtrees:desc-en ;
shapetrees:describes solidtrees:Project .
solidtrees:desc-en
shapetrees:usesLanguage "en"^^xsd:language . ... from this file to this file ? If so, this means you need to keep a synchronization of data between files. Which for me is a bad practice, because there should only be a single source of truth. From my perspective, the whole point of linked data is to avoid making copies of the same data ! (otherwise why would we bother with URIs ?) |
Would it be possible to have a direct link between the shape tree and its description? Here it seems that we have a link between a document that includes multiple shape tree definitions to descriptions which feels like weird indirection.
Response from @justinwb:
Originally posted by @elf-pavlik in #71 (comment)
The text was updated successfully, but these errors were encountered: