Skip to content

Instantly share code, notes, and snippets.

@JeroenDeDauw
Created July 23, 2022 16:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JeroenDeDauw/adc1649182ae8486f57ce5be79d493c4 to your computer and use it in GitHub Desktop.
Save JeroenDeDauw/adc1649182ae8486f57ce5be79d493c4 to your computer and use it in GitHub Desktop.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix wikibase: <http://wikiba.se/ontology#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix schema: <http://schema.org/> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix geo: <http://www.opengis.net/ont/geosparql#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix wd: <http://localhost:8484/entity/> .
@prefix data: <http://localhost:8484/index.php/Special:EntityData/> .
@prefix s: <http://localhost:8484/entity/statement/> .
@prefix ref: <http://localhost:8484/reference/> .
@prefix v: <http://localhost:8484/value/> .
@prefix wdt: <http://localhost:8484/prop/direct/> .
@prefix wdtn: <http://localhost:8484/prop/direct-normalized/> .
@prefix p: <http://localhost:8484/prop/> .
@prefix ps: <http://localhost:8484/prop/statement/> .
@prefix psv: <http://localhost:8484/prop/statement/value/> .
@prefix psn: <http://localhost:8484/prop/statement/value-normalized/> .
@prefix pq: <http://localhost:8484/prop/qualifier/> .
@prefix pqv: <http://localhost:8484/prop/qualifier/value/> .
@prefix pqn: <http://localhost:8484/prop/qualifier/value-normalized/> .
@prefix pr: <http://localhost:8484/prop/reference/> .
@prefix prv: <http://localhost:8484/prop/reference/value/> .
@prefix prn: <http://localhost:8484/prop/reference/value-normalized/> .
@prefix wdno: <http://localhost:8484/prop/novalue/> .
data:Q1 a schema:Dataset ;
schema:about wd:Q1 ;
cc:license <http://creativecommons.org/publicdomain/zero/1.0/> ;
schema:softwareVersion "1.0.0" ;
schema:version "2"^^xsd:integer ;
schema:dateModified "2022-07-20T16:23:58Z"^^xsd:dateTime ;
wikibase:statements "0"^^xsd:integer ;
wikibase:sitelinks "0"^^xsd:integer ;
wikibase:identifiers "0"^^xsd:integer .
wd:Q1 a wikibase:Item ;
rdfs:label "foo"@en ;
skos:prefLabel "foo"@en ;
schema:name "foo"@en ;
owl:sameAs "http://www.w3.org/2000/01/rdf-schema#subClassOf" ;
skos:exactMatch "http://www.example.com/foo" ;
rdfs:subClassOf "http://www.example.com/bar" ;
rdfs:subPropertyOf "http://www.example.com/baz" .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment