-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdoap.ttl
More file actions
20 lines (17 loc) · 766 Bytes
/
doap.ttl
File metadata and controls
20 lines (17 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix : <http://usefulinc.com/ns/doap#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
<http://sebastian.tramp.name>
a foaf:Person ;
rdfs:label "Sebastian Tramp" .
<http://sebastian.tramp.name/Projects/rdf.sh>
:description "A multi-tool shell script for doing Semantic Web jobs on the command line." ;
:developer <http://sebastian.tramp.name> ;
:download-page <https://github.com/seebi/rdf.sh/releases> ;
:homepage <https://github.com/seebi/rdf.sh/> ;
:name "rdf.sh" ;
:programming-language "Shell" ;
a :Project .