Skip to content

Commit

Permalink
GH-4: initial publication of ICEG PO / PS
Browse files Browse the repository at this point in the history
Signed-off-by:Bart Hanssens <bart.hanssens@bosa.fgov.be>
  • Loading branch information
barthanssens committed Jan 26, 2022
1 parent d88b4b6 commit c370a07
Show file tree
Hide file tree
Showing 6 changed files with 378 additions and 352 deletions.
1 change: 1 addition & 0 deletions prod/data/ontologies/publicorganization.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<http://vocab.belgif.be/ns/publicorganization#> a owl:Ontology;
rdfs:comment "ICEG Organisation Publique"@fr, "ICEG Public Organization"@en, "ICEG Publieke Organisatie"@nl;
rdfs:label "ICEG-PO"@en, "ICEG-PO"@fr, "ICEG-PO"@nl;
rdfs:seeAlso <https://belgif.github.io/thematic/models/public%20organisation/index_en.html> ;
owl:versionInfo "Draft 2022-01-21" .

iceg-po:certification a rdf:Property, owl:ObjectProperty;
Expand Down
1 change: 1 addition & 0 deletions prod/data/ontologies/publicservice.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<http://vocab.belgif.be/ns/publicservice#> a owl:Ontology;
rdfs:comment "ICEG Public Service"@en, "ICEG Publieke Organisatie"@nl, "ICEG Service Public"@fr;
rdfs:label "ICEG-PS"@en, "ICEG-PS"@fr, "ICEG-PS"@nl;
rdfs:seeAlso <https://belgif.github.io/thematic/models/public%20organisation/index_en.html> ;
owl:versionInfo "Draft 2022-01-21" .

iceg-ps:hasPurpose a rdf:Property, owl:ObjectProperty;
Expand Down
11 changes: 10 additions & 1 deletion src/main/java/be/belgif/vocab/dao/RdfDAO.java
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,16 @@ public Set<Value> collection(IRI prop, Model fullm) {
public String getComment(String lang) {
return literal(RDFS.COMMENT, lang);
}


/**
* Get link to additional info
*
* @return IRI or null
*/
public Set<Value> getSeeAlso() {
return objs(RDFS.SEEALSO);
}

/**
* Get sameAs URIs
*
Expand Down

0 comments on commit c370a07

Please sign in to comment.