You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 30, 2024. It is now read-only.
We talked in the meeting on the 23th of August about ordered lists:
It is painful to implement ordered lists at the moment. But they give a great aspect of the data; the order. Inside my form renderer I have added a way to sort ordered lists but it was quite painful.
In my form renderer I did a similar abstraction. When I detect an sh:path that specifies an ordered list for rendering the form I replace it to a normal sh:path and send the fact that is should be an ordered list to dash:editor implementation. I would be nicer to do this in the SHACL.
Questions:
What would be a good predicate (alternative for 'isOrderedList')?
How have you worked around ordered lists in SHACL? Do you have something to share about this topic?
We talked in the meeting on the 23th of August about ordered lists:
It is painful to implement ordered lists at the moment. But they give a great aspect of the data; the order. Inside my form renderer I have added a way to sort ordered lists but it was quite painful.
sh:property [ sh:name "Author reference"@en ; sh:path ( schema:author [ sh:zeroOrMorePath rdf:rest ] rdf:first ) ; ]It would be great if we could have something like this instead:
In my form renderer I did a similar abstraction. When I detect an sh:path that specifies an ordered list for rendering the form I replace it to a normal sh:path and send the fact that is should be an ordered list to dash:editor implementation. I would be nicer to do this in the SHACL.
Questions:
References