-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmall.ttl
47 lines (43 loc) · 2.25 KB
/
small.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
34
35
36
37
38
39
40
41
42
43
44
45
46
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dc: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix earl: <http://www.w3.org/ns/earl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix sec: <https://w3id.org/security#>.
<file:///small.ttl> foaf:primaryTopic <https://iherman.github.io/rdfjs-c14n/> ;
dc:issued "2024-02-14T13:21:08.700Z"^^xsd:dateTime ;
foaf:maker <https://www.ivan-herman.net/foaf#me> .
<https://iherman.github.io/rdfjs-c14n/> a doap:Project ;
doap:name "rdfjs-c14n" ;
doap:homepage <https://iherman.github.io/rdfjs-c14n/> ;
doap:license <https://www.w3.org/Consortium/Legal/copyright-software> ;
doap:shortdesc "RDF Canonicalization in TypeScript."@en ;
doap:description "Implementation in Typescript of the RDF Canonicalization Algorithm RDFC-1.0, on top of the RDF/JS interfaces"@en ;
doap:created "2023-01-05"^^xsd:date ;
doap:programming-language "TypeScript" ;
doap:implements <https://www.w3.org/TR/rdf-canon/> ;
doap:category <http://dbpedia.org/resource/Resource_Description_Framework>,
<http://dbpedia.org/resource/TypeScript> ;
doap:download-page <https://www.npmjs.com/package/rdfjs-c14n> ;
doap:bug-database <https://github.com/iherman/rdfjs-c14n/issues> ;
doap:developer <https://www.ivan-herman.net/foaf#me> ;
doap:maintainer <https://www.ivan-herman.net/foaf#me> ;
doap:documenter <https://www.ivan-herman.net/foaf#me> ;
foaf:maker <https://www.ivan-herman.net/foaf#me> ;
dc:creator <https://www.ivan-herman.net/foaf#me> ;
doap:release [
a doap:Version ;
doap:name "rdfjs-c14n";
doap:revision "3.1.0";
doap:created "2024-02-07"^^xsd:date ;
] ;
doap:repository [
a doap:GitRepository ;
doap:location <https://github.com/iherman/rdfjs-c14n>
] .
<https://www.ivan-herman.net/foaf#me> a foaf:Person, earl:Assertor;
foaf:name "Ivan Herman";
foaf:title "Implementor";
foaf:homepage <https://www.ivan-herman.net/> .