Skip to content

Instantly share code, notes, and snippets.

@gatemezing
Created November 26, 2022 17:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gatemezing/fea8481c2044a61b90a649bfdb012198 to your computer and use it in GitHub Desktop.
Save gatemezing/fea8481c2044a61b90a649bfdb012198 to your computer and use it in GitHub Desktop.
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix rdf:<http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
<http://data.apco.cm/codes/rev1/nacam> a skos:ConceptScheme;
dcterms:issued "2022-11-26T00:00:00.000+01:00"^^xsd:dateTime;
skos:altLabel "NACAM rev1" ;
skos:prefLabel "Nomenclature d'activités camerounaise - NAEMA rév. 1"@fr;
skos:hasTopConcept <http://data.apco.cm/codes/rev1/nacam/section/J> ; # mettre tous les sections du document, voir page 9 du pdf
.
## les divisions dans la section J 58, 59, 60, 61,62, 63
<http://data.apco.cm/codes/rev1/nacam/section/J> skos:narrower <http://data.apco.cm/codes/rev1/division/62> , <http://data.apco.cm/codes/rev1/division/63> ;
.
<http://data.apco.cm/codes/rev1/division/62> a skos:Concept ;
skos:inScheme <http://data.apco.cm/codes/rev1/nacam> ;
skos:prefLabel "Activités informatiques : conseil, programmation"@fr ;
skos:notation 62 ;
skos:broader <http://data.apco.cm/codes/rev1/nacam/section/J>; #link to the section
.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment