1@prefix nie: <http://www.semanticdesktop.org/ontologies/2007/01/19/nie#> .
2@prefix dcterms: <http://purl.org/dc/terms/> .
3@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
4@prefix nrl: <http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#> .
5@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
6@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
7
8# HERE "nie:" is used as graph name
9nie: {nie:characterSet
10          a rdf:Property ;
11          rdfs:comment "Characterset in which the content of the InformationElement was created." ;
12          rdfs:domain nie:InformationElement ;
13          rdfs:label "characterSet" ;
14          rdfs:range xsd:string ;
15          nrl:maxCardinality "1" .
16}
17
18<http://www.semanticdesktop.org/ontologies/2007/01/19/nie_metadata#> {
19    nie: a nrl:Ontology ;
20    .
21
22    <http://www.semanticdesktop.org/ontologies/2007/01/19/nie_metadata#>
23          a nrl:GraphMetadata ;
24          nrl:coreGraphMetadataFor
25                  nie: .
26}
27