-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdoap.ttl
18 lines (16 loc) · 857 Bytes
/
doap.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<https://github.com/melgi/cturtle> a doap:Project ;
doap:name "CTurtle" ;
doap:homepage <http://melgi.github.io/cturtle/>;
doap:license <http://www.apache.org/licenses/LICENSE-2.0> ;
doap:description "Convert RDF Turtle to N-Triples or N3P"@en ;
doap:created "2016-01-12"^^xsd:date ;
doap:programming-language "C++" ;
doap:implements <http://www.w3.org/TR/turtle/> ;
doap:category <http://dbpedia.org/resource/Resource_Description_Framework>, <http://dbpedia.org/resource/Turtle_(syntax)> ;
doap:developer <http://melgi.github.io/card#me> .
<http://melgi.github.io/card#me> a foaf:Person ;
foaf:name "Giovanni Mels" ;
foaf:homepage <http://melgi.github.io/> .