Created
February 23, 2018 06:44
-
-
Save kinow/706eec7e365d4c7a14a7b1630367ee08 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@prefix : <http://kinoshita.eti.br/>. | |
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>. | |
@prefix owl: <http://www.w3.org/2002/07/owl#>. | |
@prefix dc: <http://purl.org/dc/elements/1.1/> . | |
@prefix dct: <http://purl.org/dc/terms/> . | |
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | |
@prefix skos: <http://www.w3.org/2004/02/skos/core#>. | |
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>. | |
:collectiona a skos:Collection. | |
:collectionb a skos:Collection. | |
# DummyA | |
:dummya a skos:Concept ; | |
dc:source "Some source"@en ; | |
dct:created "1990-05-08"^^xsd:date ; | |
dct:modified "2017-01-23T10:42:19+02:00"^^xsd:dateTime ; | |
skos:inScheme : ; | |
skos:scopeNote "Childrens toy pipes used with detergent mixture to blow bubbles"@en ; | |
skos:prefLabel "Dummy"@en . | |
:dummya skos:member :collectiona. | |
:subdummya a skos:Concept; | |
skos:prefLabel "Sub Dummy A"@en; | |
skos:broader :dummya. | |
:subdummya skos:member :collectiona. | |
# DummyB | |
:dummyb a skos:Concept; | |
skos:prefLabel "Dummy B"@en. | |
:dummyb skos:member :collectionb. | |
# curl -I -X POST -H Content-Type:text/turtle -T ~/Downloads/sample-skos.ttl -G http://localhost:3030/skosmos/data --data-urlencode graph=http://kinoshita.eti.br/ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment