A question for people into metadata.
I want to mark a book as Fiction or Non-Fiction using [Schema.org](http://Schema.org)
The only applicable property I can see is https://schema.org/genre
That says the value can be text or a URl.
So should I use the plain text
"genre": "fiction"
or point to a definition like Wikidata
"genre": "https://www.wikidata.org/wiki/Q8253"
Vote in the poll… now!
@Edent knowledge classification via linked data. 🥰
The tension is neither the wikdata uri nor its predicates are human parseable and the label isn’t machine readable.
So provide both and give it the concept treatment with a json object. Its id is the wiki data link with a label of “fiction”.
In skos it would look like `”genre”: {“id”: “urihere”, “prefLabel”: “fiction”}`, which gives human and machine text.
I’m sure there’s a schema.org analogue. Looking forward seeing what you chose.