> SkosTerminology

Draft Terminology (in SKOS)

Introduction

Alistair Miles has kindly started off the process with the simple code segment below. For more information about SKOS, see http://www.w3.org/2004/02/skos/.

Draft Terminology definitions

--- begin turtle ---

# N.B. need to reserve a namespace, used example.org below

@prefix a4a: <http://example.org/accessibility/a4a/>.

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.

@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.

@prefix skos: <http://www.w3.org/2004/02/skos/core#>.

# first declare new properties (just using RDF) ...

a4a:hasAdaptation a rdf:Property;

a4a:isAdaptationOf a rdf:Property;

a4a:readingRate a rdf:Property;

a4a:readingRate a rdf:Property;

a4a:accessMode a rdf:Property;

a4a:role a rdf:Property;

a4a:flexibility a rdf:Property;

a4a:supportTool a rdf:Property;

# ... then declare all the new controlled values (using a bit of SKOS) ...

a4a:AlternativeText a skos:Concept;

a4a:LongDescription a skos:Concept;

a4a:Caption a skos:Concept;

# ... and so on for format values,

a4a:EnhancedText a skos:Concept;

a4a:VerbatimText a skos:Concept;

a4a:ReducedText a skos:Concept;

# ... and so on for all other values.

--- end turtle ---