sparna-git / xls2rdf

Create RDF data from Excel spreadsheets - edit SKOS vocabularies, knowledge graph instances, SHACL constraints, OWL ontologies in Excel files. Available as HTTP service, upload form, command-line, or Java API.
https://xls2rdf.sparna.fr
GNU Lesser General Public License v3.0
17 stars 3 forks source link

Ability to easily create RDF lists #44

Closed tfrancart closed 1 year ago

tfrancart commented 1 year ago

Converter currently supports Turtle list syntax as a cell value (<http://uri1> <http://uri2>)

Sometimes it may be desirable to generate an RDF list from a list of cell values, e.g. owl:unionOf with multiple lines, each on the same subject, and with different values

URI owl:unionOf
A http://item1
A http://item2
A http://item3

The idea is to add a parameter to instruct the converter to interpret a series of values as a list

URI owl:unionOf(asList="true")
A http://item1
A http://item2
A http://item3

would yield A owl:unionOf (<http://item1> <http://item2> <http://item3>)