1 / 18

Linked Open Vocabularies – the vision and the reality

Linked Open Vocabularies – the vision and the reality. Pierre-Yves Vandenbussche Lead Researcher Fujitsu Ireland. Linked Open Data / Linked Open Vocabularies. Linked Open Data. Focus is on linking instances Direct benefit for end applications (data mashup , knowledge graph, etc.)

bryson
Download Presentation

Linked Open Vocabularies – the vision and the reality

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Linked Open Vocabularies – the vision and the reality Pierre-Yves Vandenbussche Lead Researcher Fujitsu Ireland

  2. Linked Open Data / Linked Open Vocabularies

  3. Linked Open Data • Focus is on linking instances • Direct benefit for end applications (data mashup, knowledge graph, etc.) • Link type • owl:sameAs (23.000k) • skos:closeMatch (380k) • skos:exactMatch (150k) • skos:relatedMatch (125k) • skos:broadMatch (7k) • skos:narrowMatch (1k) Source: http://stats.lod2.eu/ Source: http://lod-cloud.net

  4. Linked Open Vocabularies • Focus is on linking schema elements • Facilitates data linkage • Enables multi vocabularies • ontology design • Link type (% of vocabularies in LOV with this relationship) • voaf:metadataVoc (87%) • voaf:specializes (55%) • voaf:extends (51%) • voaf:hasEquivalences With (15%) • voaf:generalizes (6%) • voaf:hasDisjunctionsWith (3%)

  5. Towards a Linked Open Vocabularies ecosystem

  6. Towards a Linked Open Vocabularies ecosystem • History • Started 2011-Q1 (Initially a deliverable of Dataliftproject : http://datalift.org) • 2012 : Growinginterestbeyond the initial scope • Migration to OKFN since July 2012 : http://lov.okfn.org • Status as of June 2014 • 440 vocabularies and counting • 429 agents involved (342 foaf:Person and 87 foaf:Organization) • Continuous feedback from the community (subscribe to the Google+ community)

  7. Towards a Linked Open Vocabularies ecosystem • LOV Home : http://lov.okfn.org • LOV-Search : http://lov.okfn.org/dataset/lov/search/ • LOV-Suggest : http://lov.okfn.org/dataset/lov/suggest/ • LOV-Stats : http://lov.okfn.org/dataset/lov/stats/ • LOV-API : http://lov.okfn.org/dataset/lov/apidoc/ • LOV-Bot : Daily or on-demand scan of vocabularies • LOV-Edit : Administration and curation back-office • SPARQL endpoint(s) / Dump • Endpoint: http://lov.okfn.org/endpoint/lov_aggregator • Nquads: http://lov.okfn.org/dataset/lov/agg/lov_aggregator.nq.zip

  8. Towards a Linked Open Vocabularies ecosystem Richmetadata Usage in linked data Relations withothervocabularies Versions and timeline Source: http://lov.okfn.org/dataset/lov/details/vocabulary_org.html

  9. Typology of vocabulary linkage

  10. Before linking your vocabularies • Pros • Maximising the probability that data can be consumed by applications without requiring further pre-processing of the data or modification of the application • Facilitating the creation of links between different datasets entities using same or related types/properties. • Easing data understanding by linking to already well known vocabularies • Cons • Meaning Dependency to external specifications beyond our control and with unknown futures. • Meaningfulness of linkage between two models with different intentions

  11. Vocabulary linkage CONSTRUCT{ ?vocab1 voaf:metadataVoc ?vocab2}WHERE{ ?elem1 ?elem2 ?o. ?elem1 rdfs:isDefinedBy ?vocab1. ?vocab1 a voaf:Vocabulary. ?elem2 rdfs:isDefinedBy ?vocab2. ?vocab2 a voaf:Vocabulary. FILTER(?vocab1!=?vocab2)} <http://purl.org/vocommons/voaf> dc:modified “2013-05-24”^^xsd:Date Source: http://lov.okfn.org/vocab/voaf/

  12. Vocabulary linkage CONSTRUCT{ ?vocab1 voaf:extends ?vocab2}WHERE{{?elem1 owl:inverseOf ?elem2. FILTER(!isBlank(?elem2))} UNION{?elem1 rdfs:domain ?elem2. FILTER(!isBlank(?elem2))} UNION{?elem1 rdfs:range ?elem2. FILTER(!isBlank(?elem2))}  ?elem1 rdfs:isDefinedBy ?vocab1. ?vocab1 a voaf:Vocabulary. ?elem2 rdfs:isDefinedBy ?vocab2. ?vocab2 a voaf:Vocabulary. FILTER(?vocab1!=?vocab2)} mo:biographyrdfs:rangefoaf:Document

  13. Vocabulary linkage CONSTRUCT{ ?vocab1 voaf:specializes ?vocab2}WHERE{ {?elem1 rdfs:subPropertyOf ?elem2. FILTER(!isBlank(?elem2))} UNION{?elem1 rdfs:subClassOf ?elem2. FILTER(!isBlank(?elem2))} UNION{?elem1 skos:broadMatch ?elem2. FILTER(!isBlank(?elem2))} ?elem1 rdfs:isDefinedBy ?vocab1. ?vocab1 a voaf:Vocabulary. ?elem2 rdfs:isDefinedBy ?vocab2. ?vocab2 a voaf:Vocabulary. FILTER(?vocab1!=?vocab2)} cgov:fullTimeEquivalentSalaryrdfs:subPropertyOforg:remuneration

  14. Vocabulary linkage CONSTRUCT{ ?vocab1 voaf:generalizes ?vocab2}WHERE{ {?elem1 skos:narrowMatch ?elem2. FILTER(!isBlank(?elem2))} UNION{?elem2 rdfs:subPropertyOf ?elem1.} UNION{?elem1 a owl:Class. ?elem1 owl:unionOf ?union. ?union rdf:first ?elem2.} UNION{ […]}  FILTER(!isBlank(?elem2)) ?elem1 rdfs:isDefinedBy ?vocab1. ?vocab1 a voaf:Vocabulary. ?elem2 rdfs:isDefinedBy ?vocab2. ?vocab2 a voaf:Vocabulary. FILTER(?vocab1!=?vocab2)} ldr:RightsExpressionskos:narrowMatchcc:License

  15. How to link two vocabularies CONSTRUCT{ ?vocab1 voaf:hasEquivalencesWith ?vocab2}WHERE{ {?elem1 owl:equivalentProperty ?elem2.} UNION{?elem1 owl:sameAs ?elem2.} UNION{?elem1 owl:equivalentClass ?elem2.} UNION{?elem2 owl:equivalentProperty ?elem1.} UNION{?elem2 owl:equivalentClass ?elem1.} UNION{?elem1 skos:exactMatch ?elem2.} UNION{?elem2 skos:exactMatch ?elem1.} FILTER(!isBlank(?elem2)) ?elem1 rdfs:isDefinedBy ?vocab1. ?vocab1 a voaf:Vocabulary. ?elem2 rdfs:isDefinedBy ?vocab2. ?vocab2 a voaf:Vocabulary. FILTER(?vocab1!=?vocab2)} bio:childowl:equivalentPropertyrel:parentOf

  16. Vocabulary linkage CONSTRUCT{ ?vocab1 voaf:hasDisjunctionsWith ?vocab2}WHERE{ ?elem1 owl:disjointWith ?elem2. FILTER(!isBlank(?elem2)) ?elem1 rdfs:isDefinedBy ?vocab1. ?vocab1 a voaf:Vocabulary. ?elem2 rdfs:isDefinedBy ?vocab2. ?vocab2 a voaf:Vocabulary. FILTER(?vocab1!=?vocab2)} skosxl:Labelowl:disjointWithskos:Concept

  17. Discussion • Maintenance cost of links in a distributed system • Sync with new version in external vocabularies • Find existing vocabularies / concept schemes • Map vocabularies • Handle language heterogeneity

More Related