rdf-vocab 3.2.0 → 3.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -4
  3. data/VERSION +1 -1
  4. data/lib/rdf/vocab/acl.rb +91 -89
  5. data/lib/rdf/vocab/as.rb +624 -622
  6. data/lib/rdf/vocab/bf2.rb +2241 -2239
  7. data/lib/rdf/vocab/bibframe.rb +2241 -2239
  8. data/lib/rdf/vocab/bibo.rb +943 -941
  9. data/lib/rdf/vocab/cc.rb +102 -100
  10. data/lib/rdf/vocab/cert.rb +107 -105
  11. data/lib/rdf/vocab/cnt.rb +92 -90
  12. data/lib/rdf/vocab/crm.rb +1793 -1791
  13. data/lib/rdf/vocab/datacite.rb +261 -263
  14. data/lib/rdf/vocab/dbo.rb +4307 -4305
  15. data/lib/rdf/vocab/dc.rb +665 -663
  16. data/lib/rdf/vocab/dc11.rb +109 -107
  17. data/lib/rdf/vocab/dcat.rb +373 -356
  18. data/lib/rdf/vocab/dcmitype.rb +91 -89
  19. data/lib/rdf/vocab/disco.rb +348 -346
  20. data/lib/rdf/vocab/doap.rb +304 -302
  21. data/lib/rdf/vocab/dwc.rb +2244 -2242
  22. data/lib/rdf/vocab/earl.rb +146 -144
  23. data/lib/rdf/vocab/ebucore.rb +4945 -4941
  24. data/lib/rdf/vocab/edm.rb +310 -308
  25. data/lib/rdf/vocab/exif.rb +777 -775
  26. data/lib/rdf/vocab/extensions.rb +2 -2
  27. data/lib/rdf/vocab/fcrepo4.rb +307 -305
  28. data/lib/rdf/vocab/foaf.rb +525 -523
  29. data/lib/rdf/vocab/geo.rb +34 -32
  30. data/lib/rdf/vocab/geojson.rb +66 -64
  31. data/lib/rdf/vocab/geonames.rb +3656 -3654
  32. data/lib/rdf/vocab/gr.rb +1204 -1202
  33. data/lib/rdf/vocab/gs1.rb +5881 -5879
  34. data/lib/rdf/vocab/ht.rb +194 -192
  35. data/lib/rdf/vocab/hydra.rb +439 -437
  36. data/lib/rdf/vocab/iana.rb +215 -213
  37. data/lib/rdf/vocab/ical.rb +726 -724
  38. data/lib/rdf/vocab/identifiers.rb +219 -217
  39. data/lib/rdf/vocab/iiif.rb +132 -130
  40. data/lib/rdf/vocab/jsonld.rb +205 -203
  41. data/lib/rdf/vocab/ldp.rb +193 -191
  42. data/lib/rdf/vocab/lrmi.rb +188 -186
  43. data/lib/rdf/vocab/ma.rb +318 -316
  44. data/lib/rdf/vocab/mads.rb +670 -668
  45. data/lib/rdf/vocab/marcrelators.rb +543 -541
  46. data/lib/rdf/vocab/mo.rb +1823 -1821
  47. data/lib/rdf/vocab/mods.rb +636 -634
  48. data/lib/rdf/vocab/nfo.rb +482 -480
  49. data/lib/rdf/vocab/oa.rb +333 -331
  50. data/lib/rdf/vocab/og.rb +198 -196
  51. data/lib/rdf/vocab/ogc.rb +43 -41
  52. data/lib/rdf/vocab/ore.rb +79 -77
  53. data/lib/rdf/vocab/org.rb +322 -320
  54. data/lib/rdf/vocab/pcdm.rb +73 -71
  55. data/lib/rdf/vocab/pplan.rb +97 -95
  56. data/lib/rdf/vocab/premis.rb +903 -901
  57. data/lib/rdf/vocab/premiseventtype.rb +143 -141
  58. data/lib/rdf/vocab/prov.rb +1360 -1358
  59. data/lib/rdf/vocab/ptr.rb +147 -145
  60. data/lib/rdf/vocab/rdau.rb +9447 -9438
  61. data/lib/rdf/vocab/rightsstatements.rb +123 -121
  62. data/lib/rdf/vocab/rsa.rb +44 -42
  63. data/lib/rdf/vocab/rss.rb +46 -44
  64. data/lib/rdf/vocab/schema.rb +14700 -14698
  65. data/lib/rdf/vocab/schemas.rb +14700 -14698
  66. data/lib/rdf/vocab/sd.rb +165 -163
  67. data/lib/rdf/vocab/sh.rb +1096 -1094
  68. data/lib/rdf/vocab/sioc.rb +615 -613
  69. data/lib/rdf/vocab/siocservices.rb +49 -47
  70. data/lib/rdf/vocab/sioctypes.rb +224 -222
  71. data/lib/rdf/vocab/skos.rb +202 -200
  72. data/lib/rdf/vocab/skosxl.rb +51 -49
  73. data/lib/rdf/vocab/v.rb +233 -231
  74. data/lib/rdf/vocab/vcard.rb +776 -774
  75. data/lib/rdf/vocab/vmd.rb +233 -231
  76. data/lib/rdf/vocab/void.rb +145 -143
  77. data/lib/rdf/vocab/vs.rb +27 -25
  78. data/lib/rdf/vocab/wdrs.rb +112 -110
  79. data/lib/rdf/vocab/wot.rb +135 -133
  80. data/lib/rdf/vocab/xhtml.rb +4 -2
  81. data/lib/rdf/vocab/xhv.rb +208 -206
  82. data/lib/rdf/vocab/xkos.rb +220 -218
  83. data/lib/rdf/vocab.rb +2 -0
  84. metadata +14 -3
@@ -3,11 +3,13 @@
3
3
  # This file generated automatically using rdf vocabulary format from http://www.w3.org/1999/xhtml#
4
4
  require 'rdf'
5
5
  module RDF::Vocab
6
+ # Vocabulary for <http://www.w3.org/1999/xhtml#>
7
+ # @!visibility private
6
8
  XHTML = Class.new(RDF::Vocabulary("http://www.w3.org/1999/xhtml#")) do
7
9
 
8
10
  # Ontology definition
9
11
  ontology :"http://www.w3.org/1999/xhtml#",
10
- "http://www.w3.org/1999/xhtml/vocab#stylesheet": "http://www.w3.org/StyleSheets/TR/base".freeze,
11
- "http://www.w3.org/2003/g/data-view#namespaceTransformation": "http://www.w3.org/2008/07/rdfa-xslt".freeze
12
+ "http://www.w3.org/1999/xhtml/vocab#stylesheet": "http://www.w3.org/StyleSheets/TR/base",
13
+ "http://www.w3.org/2003/g/data-view#namespaceTransformation": "http://www.w3.org/2008/07/rdfa-xslt"
12
14
  end
13
15
  end
data/lib/rdf/vocab/xhv.rb CHANGED
@@ -3,305 +3,307 @@
3
3
  # This file generated automatically using rdf vocabulary format from http://www.w3.org/1999/xhtml/vocab#
4
4
  require 'rdf'
5
5
  module RDF::Vocab
6
+ # Vocabulary for <http://www.w3.org/1999/xhtml/vocab#>
7
+ # @!visibility private
6
8
  XHV = Class.new(RDF::Vocabulary("http://www.w3.org/1999/xhtml/vocab#")) do
7
9
 
8
10
  # Ontology definition
9
11
  ontology :"http://www.w3.org/1999/xhtml/vocab#",
10
- "http://www.w3.org/1999/xhtml/vocab#stylesheet": "http://www.w3.org/StyleSheets/TR/base.css".freeze
12
+ "http://www.w3.org/1999/xhtml/vocab#stylesheet": "http://www.w3.org/StyleSheets/TR/base.css"
11
13
 
12
14
  # Property definitions
13
15
  property :alert,
14
- comment: "A message\n with important, and usually time-sensitive, information. Also see\n alertdialog and status.".freeze,
15
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
16
+ comment: "A message\n with important, and usually time-sensitive, information. Also see\n alertdialog and status.",
17
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
16
18
  property :alertdialog,
17
- comment: "A\n type of dialog that contains an alert message, where initial focus goes\n to the dialog or an element within it. Also see alert and dialog.".freeze,
18
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
19
+ comment: "A\n type of dialog that contains an alert message, where initial focus goes\n to the dialog or an element within it. Also see alert and dialog.",
20
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
19
21
  property :alternate,
20
- comment: "alternate designates alternate\n versions for a resource.".freeze,
21
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
22
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
22
+ comment: "alternate designates alternate\n versions for a resource.",
23
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
24
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
23
25
  property :appendix,
24
- comment: "appendix refers to a resource serving\n as an appendix in a collection. ".freeze,
25
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
26
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
26
+ comment: "appendix refers to a resource serving\n as an appendix in a collection. ",
27
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
28
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
27
29
  property :application,
28
- comment: "A\n region declared as a web application, as opposed to a web document.".freeze,
29
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
30
+ comment: "A\n region declared as a web application, as opposed to a web document.",
31
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
30
32
  property :article,
31
- comment: "A\n section of a page consisting of an independent part of a document, page,\n or site.".freeze,
32
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
33
+ comment: "A\n section of a page consisting of an independent part of a document, page,\n or site.",
34
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
33
35
  property :banner,
34
- comment: "banner contains the prime heading or\n internal title of a page. ".freeze,
35
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties".freeze,
36
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
36
+ comment: "banner contains the prime heading or\n internal title of a page. ",
37
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties",
38
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
37
39
  property :bookmark,
38
- comment: "bookmark refers to a bookmark - a link\n to a key entry point within an extended document. ".freeze,
39
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
40
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
40
+ comment: "bookmark refers to a bookmark - a link\n to a key entry point within an extended document. ",
41
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
42
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
41
43
  property :button,
42
- comment: "An input\n that allows for user-triggered actions when clicked or pressed.".freeze,
43
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
44
+ comment: "An input\n that allows for user-triggered actions when clicked or pressed.",
45
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
44
46
  property :chapter,
45
- comment: "chapter refers to a resource serving\n as a chapter in a collction. ".freeze,
46
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
47
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
47
+ comment: "chapter refers to a resource serving\n as a chapter in a collction. ",
48
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
49
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
48
50
  property :checkbox,
49
- comment: "An\n checkable input that has three possible values: true, false, or\n mixed.".freeze,
50
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
51
+ comment: "An\n checkable input that has three possible values: true, false, or\n mixed.",
52
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
51
53
  property :cite,
52
- comment: "cite refers to a resource that defines\n a citation. ".freeze,
53
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
54
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
54
+ comment: "cite refers to a resource that defines\n a citation. ",
55
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
56
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
55
57
  property :columnheader,
56
- comment: "A\n cell containing header information for a column.".freeze,
57
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
58
+ comment: "A\n cell containing header information for a column.",
59
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
58
60
  property :combobox,
59
- comment: "A\n presentation of a select; usually similar to a textbox where users can\n type ahead to select an option, or type to enter arbitrary text as a new\n item in the list.".freeze,
60
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
61
+ comment: "A\n presentation of a select; usually similar to a textbox where users can\n type ahead to select an option, or type to enter arbitrary text as a new\n item in the list.",
62
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
61
63
  property :complementary,
62
- comment: "secondary indicates that the section\n supports but is separable from the main content of resource.".freeze,
63
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties".freeze,
64
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
64
+ comment: "secondary indicates that the section\n supports but is separable from the main content of resource.",
65
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties",
66
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
65
67
  property :contentinfo,
66
- comment: "contentinfo has meta information about\n the content on the page or the page as a whole.".freeze,
67
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties".freeze,
68
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
68
+ comment: "contentinfo has meta information about\n the content on the page or the page as a whole.",
69
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties",
70
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
69
71
  property :contents,
70
- comment: "contents refers to a resource serving\n as a table of contents. ".freeze,
71
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
72
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
72
+ comment: "contents refers to a resource serving\n as a table of contents. ",
73
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
74
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
73
75
  property :copyright,
74
- comment: "copyright refers to a copyright\n statement for the resource. ".freeze,
75
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
76
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
76
+ comment: "copyright refers to a copyright\n statement for the resource. ",
77
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
78
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
77
79
  property :definition,
78
- comment: "definition indicates the definition of\n a term or concept.".freeze,
79
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties".freeze,
80
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
80
+ comment: "definition indicates the definition of\n a term or concept.",
81
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties",
82
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
81
83
  property :dialog,
82
- comment: "A dialog\n is an application window that is designed to interrupt the current\n processing of an application in order to prompt the user to enter\n information or require a response. Also see alertdialog.".freeze,
83
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
84
+ comment: "A dialog\n is an application window that is designed to interrupt the current\n processing of an application in order to prompt the user to enter\n information or require a response. Also see alertdialog.",
85
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
84
86
  property :directory,
85
- comment: "A list\n of references to members of a group, such as a static table of\n contents.".freeze,
86
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
87
+ comment: "A list\n of references to members of a group, such as a static table of\n contents.",
88
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
87
89
  property :document,
88
- comment: "A\n region containing related information that is declared as document\n content, as opposed to a web application.".freeze,
89
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
90
+ comment: "A\n region containing related information that is declared as document\n content, as opposed to a web application.",
91
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
90
92
  property :first,
91
- comment: "first refers the first item in a\n collection (see also start and top).".freeze,
92
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
93
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
93
+ comment: "first refers the first item in a\n collection (see also start and top).",
94
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
95
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
94
96
  property :glossary,
95
- comment: "glossary refers to a resource\n providing a glossary of terms. ".freeze,
96
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
97
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
97
+ comment: "glossary refers to a resource\n providing a glossary of terms. ",
98
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
99
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
98
100
  property :grid,
99
- comment: "A grid\n contains cells of tabular data arranged in rows and columns, like a\n table.".freeze,
100
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
101
+ comment: "A grid\n contains cells of tabular data arranged in rows and columns, like a\n table.",
102
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
101
103
  property :gridcell,
102
- comment: "A cell\n in a grid or treegrid.".freeze,
103
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
104
+ comment: "A cell\n in a grid or treegrid.",
105
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
104
106
  property :group,
105
- comment: "A set of\n user interface objects which would not be included in a page summary or\n table of contents by an assistive technology.".freeze,
106
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
107
+ comment: "A set of\n user interface objects which would not be included in a page summary or\n table of contents by an assistive technology.",
108
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
107
109
  property :heading,
108
- comment: "A\n heading for a section of the page.".freeze,
109
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
110
+ comment: "A\n heading for a section of the page.",
111
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
110
112
  property :help,
111
- comment: "help refers to a resource offering\n help. ".freeze,
112
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
113
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
113
+ comment: "help refers to a resource offering\n help. ",
114
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
115
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
114
116
  property :icon,
115
- comment: "icon refers to a resource that\n represents an icon. ".freeze,
116
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
117
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
117
+ comment: "icon refers to a resource that\n represents an icon. ",
118
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
119
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
118
120
  property :img,
119
- comment: "A container\n for a collection of elements that form an image.".freeze,
120
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
121
+ comment: "A container\n for a collection of elements that form an image.",
122
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
121
123
  property :index,
122
- comment: "index refers to a resource providing\n an index. ".freeze,
123
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
124
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
124
+ comment: "index refers to a resource providing\n an index. ",
125
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
126
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
125
127
  property :itsRules,
126
- comment: "itsRules indicates that the designated\n resource is an [ITS] rule set.".freeze,
127
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
128
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
128
+ comment: "itsRules indicates that the designated\n resource is an [ITS] rule set.",
129
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
130
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
129
131
  property :last,
130
- comment: "last refers to the last resource in a\n collection of resources. ".freeze,
131
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
132
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
132
+ comment: "last refers to the last resource in a\n collection of resources. ",
133
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
134
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
133
135
  property :license,
134
- comment: "license refers to a resource that\n defines the associated license. ".freeze,
135
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
136
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
136
+ comment: "license refers to a resource that\n defines the associated license. ",
137
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
138
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
137
139
  property :link,
138
- comment: "An\n interactive reference to an internal or external resource.".freeze,
139
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
140
+ comment: "An\n interactive reference to an internal or external resource.",
141
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
140
142
  property :list,
141
- comment: "A group of\n non-interactive list items.".freeze,
142
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
143
+ comment: "A group of\n non-interactive list items.",
144
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
143
145
  property :listbox,
144
- comment: "A widget\n that allows the user to select one or more items from a list of\n choices.".freeze,
145
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
146
+ comment: "A widget\n that allows the user to select one or more items from a list of\n choices.",
147
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
146
148
  property :listitem,
147
- comment: "A\n single item in a list, listbox, or directory.".freeze,
148
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
149
+ comment: "A\n single item in a list, listbox, or directory.",
150
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
149
151
  property :log,
150
- comment: "A type of\n live region where new information is added in meaningful order and old\n information may disappear. Also see marquee.".freeze,
151
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
152
+ comment: "A type of\n live region where new information is added in meaningful order and old\n information may disappear. Also see marquee.",
153
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
152
154
  property :main,
153
- comment: "main acts as the main content of the\n document. ".freeze,
154
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties".freeze,
155
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
155
+ comment: "main acts as the main content of the\n document. ",
156
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties",
157
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
156
158
  property :marquee,
157
- comment: "A type\n of live region where non-essential information changes frequently. Also\n see log.".freeze,
158
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
159
+ comment: "A type\n of live region where non-essential information changes frequently. Also\n see log.",
160
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
159
161
  property :math,
160
- comment: "An element\n that represents a mathematical expression.".freeze,
161
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
162
+ comment: "An element\n that represents a mathematical expression.",
163
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
162
164
  property :menu,
163
- comment: "A type of\n widget that offers a list of choices to the user.".freeze,
164
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
165
+ comment: "A type of\n widget that offers a list of choices to the user.",
166
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
165
167
  property :menubar,
166
- comment: "A\n presentation of menu that usually remains visible and is usually\n presented horizontally.".freeze,
167
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
168
+ comment: "A\n presentation of menu that usually remains visible and is usually\n presented horizontally.",
169
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
168
170
  property :menuitem,
169
- comment: "An\n option in a group of choices contained by a menu or menubar.".freeze,
170
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
171
+ comment: "An\n option in a group of choices contained by a menu or menubar.",
172
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
171
173
  property :menuitemcheckbox,
172
- comment: "A checkable menuitem that has three possible\n values: true, false, or mixed.".freeze,
173
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
174
+ comment: "A checkable menuitem that has three possible\n values: true, false, or mixed.",
175
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
174
176
  property :menuitemradio,
175
- comment: "A\n checkable menuitem in a group of menuitemradio roles, only one of which\n can be checked at a time.".freeze,
176
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
177
+ comment: "A\n checkable menuitem in a group of menuitemradio roles, only one of which\n can be checked at a time.",
178
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
177
179
  property :meta,
178
- comment: "meta refers to a resource that\n provides metadata. ".freeze,
179
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
180
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
180
+ comment: "meta refers to a resource that\n provides metadata. ",
181
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
182
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
181
183
  property :navigation,
182
- comment: "navigation indicates a collection of\n items suitable for navigating the document or related documents.".freeze,
183
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties".freeze,
184
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
184
+ comment: "navigation indicates a collection of\n items suitable for navigating the document or related documents.",
185
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties",
186
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
185
187
  property :next,
186
- comment: "next refers to the next resource\n (after the current one) in an ordered collection of resources. ".freeze,
187
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
188
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
188
+ comment: "next refers to the next resource\n (after the current one) in an ordered collection of resources. ",
189
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
190
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
189
191
  property :note,
190
- comment: "note indicates the content is\n parenthetic or ancillary to the main content of the resource. ".freeze,
191
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties".freeze,
192
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
192
+ comment: "note indicates the content is\n parenthetic or ancillary to the main content of the resource. ",
193
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties",
194
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
193
195
  property :option,
194
- comment: "A\n selectable item in a select list.".freeze,
195
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
196
+ comment: "A\n selectable item in a select list.",
197
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
196
198
  property :p3pv1,
197
- comment: "p3pv1 refers to a P3P Policy Reference\n File [P3P]. ".freeze,
198
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
199
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
199
+ comment: "p3pv1 refers to a P3P Policy Reference\n File [P3P]. ",
200
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
201
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
200
202
  property :presentation,
201
- comment: "An\n element whose role is presentational and does not need to be mapped to\n the accessibility API.".freeze,
202
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
203
+ comment: "An\n element whose role is presentational and does not need to be mapped to\n the accessibility API.",
204
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
203
205
  property :prev,
204
- comment: "prev refers to a previous resource\n (before the current one) in an ordered collection of resources. ".freeze,
205
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
206
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
206
+ comment: "prev refers to a previous resource\n (before the current one) in an ordered collection of resources. ",
207
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
208
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
207
209
  property :progressbar,
208
- comment: "An\n element that displays the progress status for tasks that take a long\n time.".freeze,
209
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
210
+ comment: "An\n element that displays the progress status for tasks that take a long\n time.",
211
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
210
212
  property :radio,
211
- comment: "A\n checkable input in a group of radio roles, only one of which can be\n checked at a time.".freeze,
212
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
213
+ comment: "A\n checkable input in a group of radio roles, only one of which can be\n checked at a time.",
214
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
213
215
  property :radiogroup,
214
- comment: "A\n group of radio buttons.".freeze,
215
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
216
+ comment: "A\n group of radio buttons.",
217
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
216
218
  property :region,
217
- comment: "A large\n perceivable section of a web page or document, that the author feels\n should be included in a summary of page features.".freeze,
218
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
219
+ comment: "A large\n perceivable section of a web page or document, that the author feels\n should be included in a summary of page features.",
220
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
219
221
  property :role,
220
- comment: "role indicates the purpose of the\n resource. See the XHTML Role\n Vocabulary for roles in this vocabulary space, and XHTMLROLE for information on extending the\n collection of roles. ".freeze,
221
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
222
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag".freeze, "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze]
222
+ comment: "role indicates the purpose of the\n resource. See the XHTML Role\n Vocabulary for roles in this vocabulary space, and XHTMLROLE for information on extending the\n collection of roles. ",
223
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
224
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag", "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"]
223
225
  property :row,
224
- comment: "A row of\n cells in a grid.".freeze,
225
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
226
+ comment: "A row of\n cells in a grid.",
227
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
226
228
  property :rowheader,
227
- comment: "A cell\n containing header information for a row in a grid.".freeze,
228
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
229
+ comment: "A cell\n containing header information for a row in a grid.",
230
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
229
231
  property :search,
230
- comment: "search indicates that the section\n provides a search facility. ".freeze,
231
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties".freeze,
232
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
232
+ comment: "search indicates that the section\n provides a search facility. ",
233
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties",
234
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
233
235
  property :section,
234
- comment: "section refers to a resource serving\n as a section in a collection. ".freeze,
235
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
236
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
236
+ comment: "section refers to a resource serving\n as a section in a collection. ",
237
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
238
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
237
239
  property :separator,
238
- comment: "A\n divider that separates and distinguishes sections of content or groups of\n menuitems.".freeze,
239
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
240
+ comment: "A\n divider that separates and distinguishes sections of content or groups of\n menuitems.",
241
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
240
242
  property :slider,
241
- comment: "A user\n input where the user selects a value from within a given range.".freeze,
242
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
243
+ comment: "A user\n input where the user selects a value from within a given range.",
244
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
243
245
  property :spinbutton,
244
- comment: "A\n form of range that expects a user to select from amongst discrete\n choices.".freeze,
245
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
246
+ comment: "A\n form of range that expects a user to select from amongst discrete\n choices.",
247
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
246
248
  property :start,
247
- comment: "start refers to the first resource in\n a collection of resources. ".freeze,
248
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
249
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
249
+ comment: "start refers to the first resource in\n a collection of resources. ",
250
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
251
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
250
252
  property :status,
251
- comment: "A\n container whose content is advisory information for the user but is not\n important enough to justify an alert. Also see alert.".freeze,
252
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
253
+ comment: "A\n container whose content is advisory information for the user but is not\n important enough to justify an alert. Also see alert.",
254
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
253
255
  property :stylesheet,
254
- comment: "stylesheet refers to a resource\n serving as a stylesheet for a resource. ".freeze,
255
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
256
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
256
+ comment: "stylesheet refers to a resource\n serving as a stylesheet for a resource. ",
257
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
258
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
257
259
  property :subsection,
258
- comment: "subsection refers to a resource\n serving as a subsection in a collection. ".freeze,
259
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
260
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
260
+ comment: "subsection refers to a resource\n serving as a subsection in a collection. ",
261
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
262
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
261
263
  property :tab,
262
- comment: "A header for\n a tabpanel.".freeze,
263
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
264
+ comment: "A header for\n a tabpanel.",
265
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
264
266
  property :tablist,
265
- comment: "A list\n of tab elements, which are references to tabpanel elements.".freeze,
266
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
267
+ comment: "A list\n of tab elements, which are references to tabpanel elements.",
268
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
267
269
  property :tabpanel,
268
- comment: "A\n container for the resources associated with a tab.".freeze,
269
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
270
+ comment: "A\n container for the resources associated with a tab.",
271
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
270
272
  property :textbox,
271
- comment: "Input\n that allows free-form text as their value.".freeze,
272
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
273
+ comment: "Input\n that allows free-form text as their value.",
274
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
273
275
  property :timer,
274
- comment: "A\n numerical counter which indicates an amount of elapsed time from a start\n point, or the time remaining until an end point.".freeze,
275
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
276
+ comment: "A\n numerical counter which indicates an amount of elapsed time from a start\n point, or the time remaining until an end point.",
277
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
276
278
  property :toolbar,
277
- comment: "A\n collection of commonly used function buttons represented in compact\n visual form.".freeze,
278
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
279
+ comment: "A\n collection of commonly used function buttons represented in compact\n visual form.",
280
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
279
281
  property :tooltip,
280
- comment: "A\n contextual popup that displays a description for an element in a mouse\n hover or keyboard focused state. Supplement to the normal tooltip\n processing of the user agent.".freeze,
281
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
282
+ comment: "A\n contextual popup that displays a description for an element in a mouse\n hover or keyboard focused state. Supplement to the normal tooltip\n processing of the user agent.",
283
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
282
284
  property :top,
283
- comment: "top is a synonym for start. ".freeze,
284
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
285
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
285
+ comment: "top is a synonym for start. ",
286
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
287
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
286
288
  property :tree,
287
- comment: "A type of\n list that may contain sub-level nested groups that can be collapsed and\n expanded.".freeze,
288
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
289
+ comment: "A type of\n list that may contain sub-level nested groups that can be collapsed and\n expanded.",
290
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
289
291
  property :treegrid,
290
- comment: "A grid\n whose rows can be expanded and collapsed in the same manner as for a\n tree.".freeze,
291
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
292
+ comment: "A grid\n whose rows can be expanded and collapsed in the same manner as for a\n tree.",
293
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
292
294
  property :treeitem,
293
- comment: "An\n option item of a tree. This is an element within a tree that may be\n expanded or collapsed if it contains a sub-level group of treeitems.".freeze,
294
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
295
+ comment: "An\n option item of a tree. This is an element within a tree that may be\n expanded or collapsed if it contains a sub-level group of treeitems.",
296
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
295
297
  property :up,
296
- comment: "up refers to a resource \"above\" in a\n hierarchically structured set. ".freeze,
297
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties".freeze,
298
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property".freeze
298
+ comment: "up refers to a resource \"above\" in a\n hierarchically structured set. ",
299
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#relrev-properties",
300
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
299
301
 
300
302
  # Extra definitions
301
303
  term :"relrev-properties",
302
- "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties".freeze,
303
- type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag".freeze
304
+ "http://www.w3.org/2000/01/rdf-schema#member": "http://www.w3.org/1999/xhtml/vocab#role-properties",
305
+ type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag"
304
306
  term :"role-properties",
305
- type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag".freeze, "http://www.w3.org/2000/01/rdf-schema#member".freeze]
307
+ type: ["http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag", "http://www.w3.org/2000/01/rdf-schema#member"]
306
308
  end
307
309
  end