123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- vocabulary <http://ontology.rys.one/drivetrain/vocabulary/richtext#> as richtext {
- extends <http://www.w3.org/2001/XMLSchema#> as xsd
- extends <http://purl.org/dc/elements/1.1/> as dc
- extends <http://www.w3.org/2000/01/rdf-schema#> as rdfs
- extends <http://ontology.rys.one/drivetrain/vocabulary/text#> as text
- concept RichTextData :> text:TextData
- concept RichTextModifer
- concept TextPosition
- scalar property onLine [
- domain TextPosition
- range xsd:int
- ]
- scalar property atPosition [
- domain TextPosition
- range xsd:int
- ]
- enumerated scalar RichTextModifierOption [
- "italic",
- "bold"
- ]
- scalar property hasRichTextModifierOption [
- domain RichTextModifer
- range RichTextModifierOption
- functional
- ]
- relation entity StartsAt [
- from RichTextModifer
- to TextPosition
- forward modifierStartsAt
- ]
- relation entity StopsAt [
- from RichTextModifer
- to TextPosition
- forward modifierStopsAt
- ]
- concept ItalicRichTextModifier :> RichTextModifer [
- restricts scalar property hasRichTextModifierOption to "italic"
- ]
- concept BoldRichTextModifier :> RichTextModifer [
- restricts scalar property hasRichTextModifierOption to "bold"
- ]
- }
|