Questions tagged [skos]

SKOS provides a standard data model to describe and interlink knowledge organization systems over the Web.

SKOS provides a standard data model to describe and interlink knowledge organization systems over the Web.

50 questions
1
vote
1 answer

How do I compact and/or frame a json-ld document so that IRI values are expressed succinctly as well as keys?

Given an original JSON-LD document like this example, which defines the sources for some thing1: [ { "@id": "https://example.com/thing1", "https://example.com/sources": [ { "@id": "https://example.com/vocab/countries/EN" …
wu-lee
  • 749
  • 4
  • 17
1
vote
1 answer

SPARQL - extract subset of graph with filter conditions

I am trying to extract a subset of a graph with a multi-hierarchy. Example Structure: root / \ SubWant …
Mason Edmison
  • 594
  • 3
  • 16
1
vote
1 answer

skos broader and narrow inverse not working

I have setup GraphDB SE trial version and trying out inference functionality with OWL2-RL ruleset. I have built a simple SKOS knowledge with a single broader relationship. Some how, when I try to query for narrower relationship am not getting any…
arun s
  • 11
  • 1
  • 3
1
vote
1 answer

Search for SKOS prefLabel in Visual Graph

Is there a way to search for SKOS concepts by prefLabel (Visual graph)? Also, have prefLabels displayed in results?
dido_b
  • 13
  • 3
1
vote
1 answer

Using a skos vocabulary in an owl ontology

I would like to refer to external skos vocabularies in an ontology. More precisely i would like, if possible, to state that the range of a property is one of the skos:concept defined in an existing skos vocabulary. I think one of the problem is…
David N
  • 509
  • 4
  • 12
1
vote
2 answers

How to relate a SKOS concept as the union of two other concepts

I am defining mappings between two concepts schemes, and have the following situation: wp20:in a skos:Concept ; skos:scopeNote "A preposition or subordinating conjunction"@en . pos:conjunction a skos:Concept . pos:preposition a skos:Concept…
reece
  • 7,945
  • 1
  • 26
  • 28
1
vote
1 answer

Link a permalink in an RDF SKOS concept

I have created a SKOS concept. This is working fine. Now I want to annotate my concept with some additional information and implement a link to a VIAF authority ID, namely, http://viaf.org/viaf/136631587.
Mchoeti
  • 536
  • 1
  • 8
  • 24
1
vote
1 answer

xslt - get the preceding sibling of an element through xpath

Im trying to get the values of the element skos:prefLabel which has a sibling skos:closeMatch. However, I'm seeing that there are other skos:prefLabel being preceding-siblings of skos:closeMatch. I'm currently working on the following:
schnydszch
  • 435
  • 5
  • 19
1
vote
1 answer

xsl to get the element node value and attribute of parent node

I'm trying to place in a text file the following: آبیس ماریزی‌ای 大白叶冷杉
schnydszch
  • 435
  • 5
  • 19
0
votes
1 answer

tagging 'plain-language' vs technical definition in a SKOS vocabulary

I am trying to implement a technical glossary in SKOS (which uses BCP47) that has both a 'technical' scientific definition as well as a more accessible 'plain-language' definition. I have not been able to find an appropriate solution Is there a…
alex_danielssen
  • 1,839
  • 1
  • 8
  • 19
0
votes
1 answer

Find URI based on literal variable using FILTER and REGEX

I need to find URIs of skos:Concept using skos:prefLabel (literal) from other skos:Concept. Here is my query: SELECT ?variableURI ?variablePref ?entityPrefRegex ?entityURI ?entityPref WHERE { ?variableURI skos:prefLabel ?variablePref . …
charlycou
  • 1,778
  • 13
  • 37
0
votes
1 answer

SPARQL Inference with SKOS

We are trying to showcase inference with linked-data. The simple graph looks like the following in turtle-format: PREFIX rdf: PREFIX rdfs: PREFIX ex:…
onew4y
  • 83
  • 6
0
votes
1 answer

Where have all my labels gone? Topbraid owl to SHACL conversion

I'm trying to convert my ontology, from OWL to SHACL. However, the SKOS labels, preflabels, comments etc. are not being converted. At least, they don't come back in the ttl file that is generated. Right now, I load my original TTL file into…
Robin
  • 135
  • 10
0
votes
1 answer

Using classes or concepts to model enums

SKOS has the notion of concept and concept schemes, which can be roughly used to model enums known from standard programming languages. Concepts can also be defined to be wider or narrower than each other, roughly equivalent to bit flags…
IS4
  • 11,945
  • 2
  • 47
  • 86
0
votes
1 answer

How to find out all the skos:broader relations from DBpedia in order to build the concept hierarchy (tree) by using SPARQL query

As I am using this query text to find out those skos:broader related concepts of the keyword: England. select ?ChildNodes where { skos:broader ?ChildNodes } and I've got the result like…
BBQ
  • 23
  • 4