-
Notifications
You must be signed in to change notification settings - Fork 1
/
doap.n3
30 lines (29 loc) · 1.38 KB
/
doap.n3
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
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owconfig: <http://ns.ontowiki.net/SysOnt/ExtensionConfig/> .
@prefix extension: <http://ns.ontowiki.net/Extensions/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix event: <http://ns.ontowiki.net/SysOnt/Events/> .
@prefix : <https://github.com/AKSW/template/raw/master/doap.n3#> .
<> foaf:primaryTopic :template .
:template a doap:Project ;
doap:name "template" ;
owconfig:privateNamespace <https://github.com/AKSW/template/raw/master/doap.n3#> ;
owconfig:enabled "true"^^xsd:boolean ;
rdfs:label "Template" ;
doap:description "This template provides functionality for forms and subforms" ;
owconfig:pluginEvent event:onPropertiesActionTemplate ;
owconfig:pluginEvent event:onRDFAuthorInitActionTemplate ;
owconfig:config [
a owconfig:Config;
owconfig:id "template";
:restrictive "true"^^xsd:boolean ;
:templateUri <http://vocab.ub.uni-leipzig.de/terms/Template> ;
:bindsClassUri <http://vocab.ub.uni-leipzig.de/terms/bindsClass> ;
:providedPropertiesUri <http://vocab.ub.uni-leipzig.de/terms/providedProperty> ;
:optionalPropertiesUri <http://vocab.ub.uni-leipzig.de/terms/optionalProperty> ;
] ;
doap:release :v1-0 .
:v1-0 a doap:Version ;
doap:revision "1.0" .