Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document and modify accessibility vocabulary #19

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 31 additions & 19 deletions accessibilitySummary.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -6,40 +6,52 @@
<> a skos:ConceptScheme ;
dct:title "Barrierefreiheit"@de ;
dct:title "Accessibility"@en ;
dct:description "Accessibility features of an item."@en ;
dct:description "Accessibility rating of some content. If a concept X is narrower than a concept Y, then that means that the rating X has higher requirements. I.e. the follow a partial ordering."@en ;
dct:creator "<https://wirlernenonline.de>" ;
dct:created "2020-11-16"^^xsd:date ;
dct:modified "2020-11-16"^^xsd:date ;
dct:modified "2022-07-19"^^xsd:date ;
dct:issued "2020-11-16"^^xsd:date ;
dct:license <http://creativecommons.org/publicdomain/zero/1.0/> ;
skos:hasTopConcept <none>, <a>, <aa>, <aaa>, <bitv>, <wcag> .
skos:hasTopConcept <b>, <a>, <aa>, <aaa>, <bitv-I>, <bitv-II> .

<none> a skos:Concept ;
skos:prefLabel "Nicht geprüft"@de ;
skos:prefLabel "Not tested"@en ;
<b> a skos:Concept ;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe instead of just "b" something more meaningful? E.g. "failed" :D

skos:prefLabel "B" ;
skos:definition "The content does not comply to the WCAG A rating requirements."@en ;
skos:definition "Der Inhalt erfüllt nicht die WCAG Anforderungen für eine A-Wertung."@en ;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"@de"

skos:topConceptOf <> .

<a> a skos:Concept ;
skos:prefLabel "A (am niedrigsten)"@de ;
skos:prefLabel "A (lowest)"@en ;
skos:prefLabel "WCAG-A";
skos:definition "The content does comply to the WCAG A rating requirements."@en ;
skos:definition "Der Inhalt erfüllt die WCAG Anforderungen für eine A-Wertung."@en ;
skos:narrower <b> ;
skos:topConceptOf <> .

<aa> a skos:Concept ;
skos:prefLabel "AA (mittel)"@de ;
skos:prefLabel "AA (mid range)"@en ;
skos:prefLabel "WCAG-AA" ;
skos:definition "The content does comply to the WCAG AA rating requirements."@en ;
skos:definition "Der Inhalt erfüllt die WCAG Anforderungen für eine AA-Wertung."@en ;
skos:narrower <aa> ;
skos:topConceptOf <> .

<aaa> a skos:Concept ;
skos:prefLabel "AAA (am höchsten)"@de ;
skos:prefLabel "AAA (highest)"@en ;
skos:prefLabel "WCAG-AAA" ;
skos:definition "The content does comply to the WCAG AAA rating requirements."@en ;
skos:definition "Der Inhalt erfüllt die WCAG Anforderungen für eine AAA-Wertung."@en ;
skos:narrower <aaa> ;
skos:topConceptOf <> .

<bitv> a skos:Concept ;
skos:prefLabel "BITV 2.0 (2019)"@de ;
skos:prefLabel "BITV 2.0 (2019)"@en ;
<bitv-I> a skos:Concept ;
skos:prefLabel "BITV I";
skos:definition "The content does comply to the BITV 2.0 Priority I requirements."@en ;
skos:definition "Der Inhalt erfüllt die BITV 2.0 Priorität I Anforderungen für eine AAA-Wertung."@en ;
skos:narrower <aa> ;
skos:topConceptOf <> .

<wcag> a skos:Concept ;
skos:prefLabel "WCAG"@de ;
skos:prefLabel "WCAG"@en ;
skos:topConceptOf <> .
<bitv-II> a skos:Concept ;
skos:prefLabel "BITV II";
skos:definition "The content does comply to the BITV 2.0 Priority II requirements."@en ;
skos:definition "Der Inhalt erfüllt die BITV 2.0 Priorität II Anforderungen für eine AAA-Wertung."@en ;
skos:narrower <aaa> ;
skos:narrower <bitv-I> ;
skos:topConceptOf <> .