rdf

Bart Kleijngeld 2022-09-05T09:49:38.400929Z

I would like to be able to state SKOS concepts as deprecated (for older terms no longer in use). Does someone know a vocabulary that can help me with this? Or perhaps something like assigning a status (i.e. "in use", "pending" or "deprecated")?

Bart Kleijngeld 2022-09-08T18:59:55.705449Z

Sorry for the late response. It's for our data governance, so I think those DC properties look really promising. Any reason why you specifically recommend the OWL term? Thanks Paula!

quoll 2022-09-08T20:17:01.604289Z

Because its definition is specifically that a resource is deprecated. The dc terms do this as well, but require extra information with them.

👍 1
quoll 2022-09-05T20:24:46.097199Z

It depends... I presume that these are your concepts? i.e. bart:MyConcept rdf:type skos:Concept .

quoll 2022-09-05T20:29:12.964979Z

There's always owl:deprecated: bart:MyConcept owl:deprecated "true"^^xsd:boolean .

quoll 2022-09-05T20:51:22.351349Z

Also, Dublin core has dc:valid for a period when something is valid (if you have that info), and dc:isReplacedBy to indicate a more recent term

quoll 2022-09-05T20:51:52.614839Z

That may not express quite what you want though. It depends on what you're trying to do 🙂

quoll 2022-09-05T20:51:59.834419Z

I recommend using the OWL term

quoll 2022-09-05T22:45:21.726489Z

I was just looking at a library I wrote earlier this year, and was really surprised at what I made. Apparently I decided to parse CSV files into records with a basic schema, and then emit those records as Turtle. I had no idea. Cool! 🙂

🙌 1
Bart Kleijngeld 2022-09-09T09:05:44.388859Z

The bliss of being human and possessing imperfect memory