-
Notifications
You must be signed in to change notification settings - Fork 16
/
serd.ttl
33 lines (31 loc) · 1.46 KB
/
serd.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://drobilla.net/drobilla#me>
a foaf:Person ;
foaf:mbox <mailto:[email protected]> ;
foaf:name "David Robillard" ;
foaf:nick "drobilla" ;
rdfs:seeAlso <http://drobilla.net/drobilla> .
<http://drobilla.net/sw/serd>
a doap:Project ;
doap:name "Serd" ;
doap:homepage <https://drobilla.net/software/serd> ;
doap:license <http://opensource.org/licenses/isc> ;
doap:shortdesc "Lightweight C library for working with RDF data" ;
doap:description "Serd is a lightweight C library for working with RDF data. Serd can be used by high-performance or resource-limited applications to read or write Turtle, TriG, NTriples, and NQuads. The included `serdi` tool can be used to efficiently process RDF documents in scripts or on the command-line." ;
doap:created "2011-09-28"^^xsd:date ;
doap:programming-language "C" ;
doap:implements <http://www.w3.org/TR/n-quads/> ,
<http://www.w3.org/TR/n-triples/> ,
<http://www.w3.org/TR/trig/> ,
<http://www.w3.org/TR/turtle/> ;
doap:bug-database <https://gitlab.com/drobilla/serd/issues> ;
doap:blog <https://drobilla.net/category/serd/> ;
doap:developer <http://drobilla.net/drobilla#me> ;
doap:maintainer <http://drobilla.net/drobilla#me> ;
doap:repository [
a doap:GitBranch ;
doap:location <https://gitlab.com/drobilla/serd.git>
] .