linked-statistics / xkos

A SKOS extension for statistical classifications
35 stars 8 forks source link

Best practices : examples contain skos:notation with a language tad, this is wrong #172

Closed tfrancart closed 4 months ago

tfrancart commented 1 year ago

e.g.

<http://id.insee.fr/codes/pcsese1982/pcsese>
    a skos:ConceptScheme ;
    skos:prefLabel "Nomenclature des Professions et Catégories Socioprofessionnelles des Emplois Salariés d'Entreprise (PCS-ESE) 1982"@fr ;
    skos:notation "PCS-ESE 1982"@fr .

(this is wrong according to the provided recommendation to use skos:notation with an xsd:string datatype)

or

<http://id.insee.fr/codes/pcsese1982/rubrique/4702>
    a skos:Concept ;
    skos:inScheme <http://id.insee.fr/codes/pcsese1982/pcsese> ;
    skos:prefLabel "Contrôleurs laitiers, inséminateurs et autres agents techniques agricoles"@fr ;
    skos:notation "4702"@fr .

(this is wrong as per the general recommendation of SKOS to rather use strings or custom datatypes for skos:notation)

The error appears in other examples too.

See #171