rdf-vocab 0.8.8 → 2.0.0.beta1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (71) hide show
  1. checksums.yaml +4 -4
  2. data/lib/rdf/vocab.rb +160 -61
  3. data/lib/rdf/vocab/acl.rb +6 -1
  4. data/lib/rdf/vocab/bibframe.rb +83 -78
  5. data/lib/rdf/vocab/bibo.rb +255 -248
  6. data/lib/rdf/vocab/cc.rb +132 -0
  7. data/lib/rdf/vocab/cert.rb +249 -0
  8. data/lib/rdf/vocab/cnt.rb +23 -18
  9. data/lib/rdf/vocab/crm.rb +12 -7
  10. data/lib/rdf/vocab/datacite.rb +88 -83
  11. data/lib/rdf/vocab/dc.rb +952 -0
  12. data/lib/rdf/vocab/dc11.rb +171 -0
  13. data/lib/rdf/vocab/dcat.rb +218 -0
  14. data/lib/rdf/vocab/dcmitype.rb +80 -75
  15. data/lib/rdf/vocab/doap.rb +341 -0
  16. data/lib/rdf/vocab/dwc.rb +1651 -1646
  17. data/lib/rdf/vocab/ebucore.rb +122 -117
  18. data/lib/rdf/vocab/edm.rb +102 -97
  19. data/lib/rdf/vocab/exif.rb +945 -0
  20. data/lib/rdf/vocab/extensions.rb +1 -0
  21. data/lib/rdf/vocab/fcrepo4.rb +62 -57
  22. data/lib/rdf/vocab/foaf.rb +618 -0
  23. data/lib/rdf/vocab/geo.rb +161 -0
  24. data/lib/rdf/vocab/geonames.rb +2742 -2737
  25. data/lib/rdf/vocab/gr.rb +1505 -0
  26. data/lib/rdf/vocab/ht.rb +240 -0
  27. data/lib/rdf/vocab/hydra.rb +96 -91
  28. data/lib/rdf/vocab/iana.rb +5 -0
  29. data/lib/rdf/vocab/ical.rb +532 -0
  30. data/lib/rdf/vocab/identifiers.rb +203 -182
  31. data/lib/rdf/vocab/iiif.rb +51 -26
  32. data/lib/rdf/vocab/jsonld.rb +15 -10
  33. data/lib/rdf/vocab/ldp.rb +66 -61
  34. data/lib/rdf/vocab/lrmi.rb +68 -63
  35. data/lib/rdf/vocab/ma.rb +517 -0
  36. data/lib/rdf/vocab/mads.rb +448 -206
  37. data/lib/rdf/vocab/marc_relators.rb +1240 -1235
  38. data/lib/rdf/vocab/mo.rb +2416 -0
  39. data/lib/rdf/vocab/mods.rb +17 -12
  40. data/lib/rdf/vocab/nfo.rb +65 -60
  41. data/lib/rdf/vocab/oa.rb +91 -86
  42. data/lib/rdf/vocab/og.rb +226 -0
  43. data/lib/rdf/vocab/ogc.rb +62 -0
  44. data/lib/rdf/vocab/ore.rb +24 -19
  45. data/lib/rdf/vocab/org.rb +83 -78
  46. data/lib/rdf/vocab/pplan.rb +54 -49
  47. data/lib/rdf/vocab/premis.rb +470 -465
  48. data/lib/rdf/vocab/premis_event_type.rb +85 -80
  49. data/lib/rdf/vocab/prov.rb +1554 -0
  50. data/lib/rdf/vocab/ptr.rb +5 -0
  51. data/lib/rdf/vocab/rsa.rb +76 -0
  52. data/lib/rdf/vocab/rss.rb +70 -0
  53. data/lib/rdf/vocab/schema.rb +10765 -0
  54. data/lib/rdf/vocab/sioc.rb +673 -0
  55. data/lib/rdf/vocab/sioc_services.rb +27 -22
  56. data/lib/rdf/vocab/skos.rb +242 -0
  57. data/lib/rdf/vocab/skosxl.rb +61 -0
  58. data/lib/rdf/vocab/v.rb +387 -0
  59. data/lib/rdf/vocab/vcard.rb +845 -0
  60. data/lib/rdf/vocab/version.rb +1 -0
  61. data/lib/rdf/vocab/vmd.rb +387 -0
  62. data/lib/rdf/vocab/void.rb +190 -0
  63. data/lib/rdf/vocab/vs.rb +32 -0
  64. data/lib/rdf/vocab/wdrs.rb +138 -0
  65. data/lib/rdf/vocab/wot.rb +171 -0
  66. data/lib/rdf/vocab/xhtml.rb +12 -0
  67. data/lib/rdf/vocab/xhv.rb +509 -0
  68. data/spec/spec_helper.rb +1 -0
  69. data/spec/vocab_spec.rb +1 -0
  70. metadata +76 -33
  71. data/lib/rdf/vocab/disco.rb +0 -369
@@ -0,0 +1,32 @@
1
+ # -*- encoding: utf-8 -*-
2
+ # frozen_string_literal: true
3
+ # This file generated automatically using vocab-fetch from http://www.w3.org/2003/06/sw-vocab-status/ns#
4
+ require 'rdf'
5
+ module RDF::Vocab
6
+ # @!parse
7
+ # # Vocabulary for <http://www.w3.org/2003/06/sw-vocab-status/ns#>
8
+ # class VS < RDF::StrictVocabulary
9
+ # end
10
+ class VS < RDF::StrictVocabulary("http://www.w3.org/2003/06/sw-vocab-status/ns#")
11
+
12
+ # Property definitions
13
+ property :moreinfo,
14
+ comment: %(more information about the status etc of a term, typically human oriented).freeze,
15
+ label: "more info".freeze,
16
+ :"rdfs:isDefinedBy" => %(vs:).freeze,
17
+ type: "rdf:Property".freeze,
18
+ :"vs:term_status" => %(unstable).freeze
19
+ property :term_status,
20
+ comment: %(the status of a vocabulary term, expressed as a short symbolic string; known values include 'unstable','testing', 'stable' and 'archaic').freeze,
21
+ label: "term status".freeze,
22
+ :"rdfs:isDefinedBy" => %(vs:).freeze,
23
+ type: "rdf:Property".freeze,
24
+ :"vs:term_status" => %(unstable).freeze
25
+ property :userdocs,
26
+ comment: %(human-oriented documentation, examples etc for use of this term).freeze,
27
+ label: "user docs".freeze,
28
+ :"rdfs:isDefinedBy" => %(vs:).freeze,
29
+ type: "rdf:Property".freeze,
30
+ :"vs:term_status" => %(unstable).freeze
31
+ end
32
+ end
@@ -0,0 +1,138 @@
1
+ # -*- encoding: utf-8 -*-
2
+ # frozen_string_literal: true
3
+ # This file generated automatically using vocab-fetch from http://www.w3.org/2007/05/powder-s#
4
+ require 'rdf'
5
+ module RDF::Vocab
6
+ # @!parse
7
+ # # Vocabulary for <http://www.w3.org/2007/05/powder-s#>
8
+ # class WDRS < RDF::StrictVocabulary
9
+ # end
10
+ class WDRS < RDF::StrictVocabulary("http://www.w3.org/2007/05/powder-s#")
11
+
12
+ # Class definitions
13
+ term :Document,
14
+ comment: %(A POWDER document.).freeze,
15
+ label: "POWDER document".freeze,
16
+ :"rdfs:isDefinedBy" => %(http://www.w3.org/TR/powder-dr/#structure).freeze,
17
+ subClassOf: "owl:Ontology".freeze,
18
+ type: "rdfs:Class".freeze
19
+ term :Processor,
20
+ comment: %(A software agent able to process POWDER documents.).freeze,
21
+ label: "POWDER processor".freeze,
22
+ :"rdfs:isDefinedBy" => %(http://www.w3.org/TR/powder-dr/#powderprocessor).freeze,
23
+ subClassOf: "dc:Agent".freeze,
24
+ type: "rdfs:Class".freeze
25
+
26
+ # Property definitions
27
+ property :authenticate,
28
+ comment: %(A pointer to a document that describes how Description Resources created by a FOAF Agent or a DC Terms Agent may be authenticated).freeze,
29
+ label: "authenticate".freeze,
30
+ :"rdfs:isDefinedBy" => %(http://www.w3.org/TR/powder-dr/#discover).freeze,
31
+ type: "rdf:Property".freeze
32
+ property :certified,
33
+ comment: %(A property that takes a Boolean value to declare whether the author of the data certifies the described resource.).freeze,
34
+ label: "certified".freeze,
35
+ range: "xsd:boolean".freeze,
36
+ :"rdfs:isDefinedBy" => %(http://www.w3.org/TR/powder-dr/#certification).freeze,
37
+ type: "rdf:Property".freeze
38
+ property :certifiedby,
39
+ comment: %(A property that links a resource to a POWDER document that certifies it.).freeze,
40
+ label: "certified by".freeze,
41
+ :"rdfs:isDefinedBy" => %(http://www.w3.org/TR/powder-dr/#certification).freeze,
42
+ type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze]
43
+ property :data_error,
44
+ comment: %(A property denoting a description of the specific error found in a given POWDER document.).freeze,
45
+ domain: "wdrs:Document".freeze,
46
+ label: "data error".freeze,
47
+ :"rdfs:isDefinedBy" => %(http://www.w3.org/TR/powder-dr/#ppErrorhandling).freeze,
48
+ type: "rdf:Property".freeze
49
+ property :describedby,
50
+ comment: %(An RDF property to exactly match the describedby relationship type introduced in http://www.w3.org/TR/powder-dr/#assoc-linking and formally defined in appendix D of the same document, i.e. the relationship A 'describedby' B asserts that resource B provides a description of resource A. There are no constraints on the format or representation of either A or B, neither are there any further constraints on either resource.).freeze,
51
+ label: "described by".freeze,
52
+ :"rdfs:isDefinedBy" => %(http://www.w3.org/TR/powder-dr/#semlink).freeze,
53
+ type: "rdf:Property".freeze
54
+ property :error_code,
55
+ comment: %(A property denoting the code of any error encountered by the POWDER processor.).freeze,
56
+ label: "error code".freeze,
57
+ range: "xsd:nonNegativeInteger".freeze,
58
+ :"rdfs:isDefinedBy" => %(http://www.w3.org/TR/powder-dr/#ppErrorhandling).freeze,
59
+ type: "rdf:Property".freeze
60
+ property :hasIRI,
61
+ comment: %(This property is meant to be used in OWL2 instead of wdrs:matchesregex. It denotes the string data range corresponding to a set of IRIs.).freeze,
62
+ domain: "rdfs:Resource".freeze,
63
+ label: "has IRI".freeze,
64
+ range: "xsd:anyURI".freeze,
65
+ :"rdfs:isDefinedBy" => %(http://www.w3.org/TR/powder-formal/#oxRegexSemantics).freeze,
66
+ type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
67
+ property :issuedby,
68
+ comment: %(This property denotes the author of a POWDER document.).freeze,
69
+ label: "issued by".freeze,
70
+ :"rdfs:isDefinedBy" => %(http://www.w3.org/TR/powder-dr/#line3).freeze,
71
+ type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze]
72
+ property :logo,
73
+ comment: %(Points to a graphic summary for the resources in a given class. Typically, it is a logo denoting conformance of a given \(set of\) resource\(s\) to a given set of criteria.).freeze,
74
+ label: "logo".freeze,
75
+ :"rdfs:isDefinedBy" => %(http://www.w3.org/TR/powder-dr/#line13).freeze,
76
+ type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze]
77
+ property :matchesregex,
78
+ comment: %(This is the key 'include' property for IRI set definitions in POWDER-S. It is necessary to take account of the POWDER Semantic Extension to process this fully. The value is a regular expression that is matched against an IRI.).freeze,
79
+ domain: "rdfs:Resource".freeze,
80
+ label: "matches regular expression".freeze,
81
+ range: "xsd:string".freeze,
82
+ :"rdfs:isDefinedBy" => %(http://www.w3.org/TR/powder-formal/#regexSemantics).freeze,
83
+ :"rdfs:seeAlso" => %(http://www.w3.org/TR/xpath-functions/#regex-syntax).freeze,
84
+ type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
85
+ property :notknownto,
86
+ comment: %(Property used in results returned from a POWDER Processor that has no data about the candidate resource. The value is the IRI of the processor.).freeze,
87
+ label: "not known to".freeze,
88
+ range: "wdrs:Processor".freeze,
89
+ :"rdfs:isDefinedBy" => %(http://www.w3.org/TR/powder-dr/#powderprocessor).freeze,
90
+ type: "rdf:Property".freeze
91
+ property :notmatchesregex,
92
+ comment: %(This is the key 'exclude' property for IRI set definitions in POWDER-S. It is necessary to take account of the POWDER Semantic Extension to process this fully. The value is a regular expression that is matched against an IRI.).freeze,
93
+ domain: "rdfs:Resource".freeze,
94
+ label: "matches regular expression".freeze,
95
+ range: "xsd:string".freeze,
96
+ :"rdfs:isDefinedBy" => %(http://www.w3.org/TR/powder-formal/#regexSemantics).freeze,
97
+ :"rdfs:seeAlso" => %(http://www.w3.org/TR/xpath-functions/#regex-syntax).freeze,
98
+ type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
99
+ property :proc_error,
100
+ comment: %(A property denoting a description of the specific software error.).freeze,
101
+ domain: "wdrs:Processor".freeze,
102
+ label: "processing error".freeze,
103
+ :"rdfs:isDefinedBy" => %(http://www.w3.org/TR/powder-dr/#ppErrorhandling).freeze,
104
+ type: "rdf:Property".freeze
105
+ property :sha1sum,
106
+ comment: %(Links to a Base64-encoded binary SHA-1 hash of the described resource. May be used by POWDER Processors when assessing trustworthiness of a DR.).freeze,
107
+ label: "SHA-1 sum".freeze,
108
+ range: "xsd:base64Binary".freeze,
109
+ :"rdfs:isDefinedBy" => %(http://www.w3.org/TR/powder-dr/#certification).freeze,
110
+ type: "rdf:Property".freeze
111
+ property :supportedby,
112
+ comment: %(A property that links a POWDER document to some other data source that supports the descriptions provided.).freeze,
113
+ label: "supported by".freeze,
114
+ :"rdfs:isDefinedBy" => %(http://www.w3.org/TR/powder-dr/#supportedBy).freeze,
115
+ type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze]
116
+ property :tag,
117
+ comment: %(Property linking to a free-text tag which may include spaces.).freeze,
118
+ label: "tag".freeze,
119
+ range: "xsd:token".freeze,
120
+ :"rdfs:isDefinedBy" => %(http://www.w3.org/TR/powder-dr/#tags).freeze,
121
+ type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
122
+ property :text,
123
+ comment: %(This property provides a summary of the descriptorset that it annotates, suitable for display to end users.).freeze,
124
+ label: "text that may be displayed".freeze,
125
+ :"rdfs:isDefinedBy" => %(http://www.w3.org/TR/powder-dr/#line13).freeze,
126
+ type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze]
127
+ property :validfrom,
128
+ comment: %(Provides a timestamp that a POWDER Processor may use when assessing trustworthiness of a POWDER document. Informally, a POWDER Processor should normally ignore data in the document before the given date.).freeze,
129
+ label: "valid from".freeze,
130
+ :"rdfs:isDefinedBy" => %(http://www.w3.org/TR/powder-dr/#certification).freeze,
131
+ type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze]
132
+ property :validuntil,
133
+ comment: %(Provides a timestamp that a POWDER Processor may use when assessing trustworthiness of a POWDER document. Informally, a POWDER Processor should normally ignore data in the document after the given date.).freeze,
134
+ label: "valid until".freeze,
135
+ :"rdfs:isDefinedBy" => %(http://www.w3.org/TR/powder-dr/#certification).freeze,
136
+ type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze]
137
+ end
138
+ end
@@ -0,0 +1,171 @@
1
+ # -*- encoding: utf-8 -*-
2
+ # frozen_string_literal: true
3
+ # This file generated automatically using vocab-fetch from http://xmlns.com/wot/0.1/index.rdf
4
+ require 'rdf'
5
+ module RDF::Vocab
6
+ # @!parse
7
+ # # Vocabulary for <http://xmlns.com/wot/0.1/>
8
+ # class WOT < RDF::StrictVocabulary
9
+ # end
10
+ class WOT < RDF::StrictVocabulary("http://xmlns.com/wot/0.1/")
11
+
12
+ # Class definitions
13
+ term :EncryptedDocument,
14
+ comment: %(An encrypted document intended for a set of recipients.).freeze,
15
+ label: "Encrypted Document".freeze,
16
+ :"owl:disjointWith" => [%(wot:Endorsement).freeze, %(wot:PubKey).freeze, %(wot:SigEvent).freeze, %(wot:User).freeze],
17
+ :"rdfs:isDefinedBy" => %(wot:).freeze,
18
+ subClassOf: ["foaf:Document".freeze, "http://xmlns.com/wordnet/1.6/Endorsement-4".freeze],
19
+ type: "owl:Class".freeze,
20
+ :"vs:term_status" => %(unstable).freeze
21
+ term :Endorsement,
22
+ comment: %(An endorsement resource containing a detached ascii signature.).freeze,
23
+ label: "Endorsement".freeze,
24
+ :"owl:disjointWith" => [%(wot:EncryptedDocument).freeze, %(wot:PubKey).freeze, %(wot:SigEvent).freeze, %(wot:User).freeze],
25
+ :"rdfs:isDefinedBy" => %(wot:).freeze,
26
+ subClassOf: ["foaf:Document".freeze, "http://xmlns.com/wordnet/1.6/Endorsement-4".freeze],
27
+ type: "owl:Class".freeze,
28
+ :"vs:term_status" => %(unstable).freeze
29
+ term :PubKey,
30
+ comment: %(A class used to represent a PGP/GPG public key for a user \(an agent, person, group or organization\).).freeze,
31
+ label: "Public Key".freeze,
32
+ :"owl:disjointWith" => [%(wot:EncryptedDocument).freeze, %(wot:Endorsement).freeze, %(wot:SigEvent).freeze, %(wot:User).freeze],
33
+ :"rdfs:isDefinedBy" => %(wot:).freeze,
34
+ subClassOf: "http://xmlns.com/wordnet/1.6/Credential".freeze,
35
+ type: "owl:Class".freeze,
36
+ :"vs:term_status" => %(stable).freeze
37
+ term :SigEvent,
38
+ comment: %(An event describing the action of a public key being signed by some other public key.).freeze,
39
+ label: "Key Signing Event".freeze,
40
+ :"owl:disjointWith" => [%(wot:EncryptedDocument).freeze, %(wot:Endorsement).freeze, %(wot:PubKey).freeze, %(wot:User).freeze],
41
+ :"rdfs:isDefinedBy" => %(wot:).freeze,
42
+ subClassOf: ["http://www.w3.org/2002/12/cal/ical#Vevent".freeze, "http://xmlns.com/wordnet/1.6/Event".freeze],
43
+ type: "owl:Class".freeze,
44
+ :"vs:term_status" => %(testing).freeze
45
+ term :User,
46
+ comment: %(A user \(agent, person, group or organization\) of a PGP/GPG public key.).freeze,
47
+ label: "Key User".freeze,
48
+ :"owl:disjointWith" => [%(wot:EncryptedDocument).freeze, %(wot:Endorsement).freeze, %(wot:PubKey).freeze, %(wot:SigEvent).freeze],
49
+ :"rdfs:isDefinedBy" => %(wot:).freeze,
50
+ subClassOf: "foaf:Agent".freeze,
51
+ type: "owl:Class".freeze,
52
+ :"vs:term_status" => %(stable).freeze
53
+
54
+ # Property definitions
55
+ property :assurance,
56
+ comment: %(A property linking a document to an endorsement resource containing a detached ascii signature.).freeze,
57
+ domain: "foaf:Document".freeze,
58
+ label: "Assurance".freeze,
59
+ range: "wot:Endorsement".freeze,
60
+ :"rdfs:isDefinedBy" => %(wot:).freeze,
61
+ type: "owl:ObjectProperty".freeze,
62
+ :"vs:term_status" => %(stable).freeze
63
+ property :encryptedTo,
64
+ comment: %(A property linking an encrypted document to a recipient.).freeze,
65
+ domain: "wot:EncryptedDocument".freeze,
66
+ label: "Encrypted to".freeze,
67
+ range: "wot:PubKey".freeze,
68
+ :"rdfs:isDefinedBy" => %(wot:).freeze,
69
+ type: "owl:ObjectProperty".freeze,
70
+ :"vs:term_status" => %(unstable).freeze
71
+ property :encrypter,
72
+ comment: %(A property linking an encrypted document to the public key that was used to encrypt it.).freeze,
73
+ domain: "wot:EncryptedDocument".freeze,
74
+ label: "Encrypted by".freeze,
75
+ range: "wot:PubKey".freeze,
76
+ :"rdfs:isDefinedBy" => %(wot:).freeze,
77
+ type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze],
78
+ :"vs:term_status" => %(unstable).freeze
79
+ property :fingerprint,
80
+ comment: %(A public key hex fingerprint string \(40 digits, white space insignificant\).).freeze,
81
+ domain: "wot:PubKey".freeze,
82
+ label: "Fingerprint".freeze,
83
+ range: "xsd:string".freeze,
84
+ :"rdfs:isDefinedBy" => %(wot:).freeze,
85
+ type: ["owl:DatatypeProperty".freeze, "owl:InverseFunctionalProperty".freeze],
86
+ :"vs:term_status" => %(testing).freeze
87
+ property :hasKey,
88
+ comment: %(A property to link a PubKey from a User).freeze,
89
+ domain: "wot:User".freeze,
90
+ label: "has Key".freeze,
91
+ :"owl:inverseOf" => %(wot:identity).freeze,
92
+ range: "wot:PubKey".freeze,
93
+ :"rdfs:isDefinedBy" => %(wot:).freeze,
94
+ type: "owl:ObjectProperty".freeze,
95
+ :"vs:term_status" => %(testing).freeze
96
+ property :hex_id,
97
+ comment: %(A public key hex identifier string \(8 digits\).).freeze,
98
+ domain: "wot:PubKey".freeze,
99
+ label: "Hex identifier".freeze,
100
+ range: "xsd:string".freeze,
101
+ :"rdfs:isDefinedBy" => %(wot:).freeze,
102
+ type: "owl:DatatypeProperty".freeze,
103
+ :"vs:term_status" => %(stable).freeze
104
+ property :identity,
105
+ comment: %(A property linking a public key to the user of the key.).freeze,
106
+ domain: "wot:PubKey".freeze,
107
+ label: "Identity".freeze,
108
+ range: "wot:User".freeze,
109
+ :"rdfs:isDefinedBy" => %(wot:).freeze,
110
+ type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze],
111
+ :"vs:term_status" => %(testing).freeze
112
+ property :length,
113
+ comment: %(A numeric string representing the length, in bytes, of a public key.).freeze,
114
+ domain: "wot:PubKey".freeze,
115
+ label: "Length".freeze,
116
+ range: "xsd:integer".freeze,
117
+ :"rdfs:isDefinedBy" => %(wot:).freeze,
118
+ type: "owl:DatatypeProperty".freeze,
119
+ :"vs:term_status" => %(stable).freeze
120
+ property :pubkeyAddress,
121
+ comment: %(The location of an ascii version of a public key.).freeze,
122
+ domain: "wot:PubKey".freeze,
123
+ label: "Address".freeze,
124
+ range: "foaf:Document".freeze,
125
+ :"rdfs:isDefinedBy" => %(wot:).freeze,
126
+ type: "owl:ObjectProperty".freeze,
127
+ :"vs:term_status" => %(testing).freeze
128
+ property :sigdate,
129
+ comment: %(The date of a public key signature event.).freeze,
130
+ domain: "wot:SigEvent".freeze,
131
+ label: "Signature date".freeze,
132
+ range: "xsd:date".freeze,
133
+ :"rdfs:isDefinedBy" => %(wot:).freeze,
134
+ type: "owl:DatatypeProperty".freeze,
135
+ :"vs:term_status" => %(testing).freeze
136
+ property :signed,
137
+ comment: %(A property linking a public key to a public key signature event.).freeze,
138
+ domain: "wot:PubKey".freeze,
139
+ label: "Signed".freeze,
140
+ range: "wot:SigEvent".freeze,
141
+ :"rdfs:isDefinedBy" => %(wot:).freeze,
142
+ type: "owl:ObjectProperty".freeze,
143
+ :"vs:term_status" => %(testing).freeze
144
+ property :signer,
145
+ comment: %(A property linking a public key signature event to the public key that was used to sign.).freeze,
146
+ domain: "wot:SigEvent".freeze,
147
+ label: "Signer".freeze,
148
+ range: "wot:PubKey".freeze,
149
+ :"rdfs:isDefinedBy" => %(wot:).freeze,
150
+ type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze],
151
+ :"vs:term_status" => %(unstable).freeze
152
+ property :sigtime,
153
+ comment: %(The time \(of day\) of a public key signature event.).freeze,
154
+ domain: "wot:SigEvent".freeze,
155
+ label: "Signature time".freeze,
156
+ range: "xsd:time".freeze,
157
+ :"rdfs:isDefinedBy" => %(wot:).freeze,
158
+ type: "owl:DatatypeProperty".freeze,
159
+ :"vs:term_status" => %(unstable).freeze
160
+
161
+ # Extra definitions
162
+ term :"",
163
+ :"dc11:date" => %(2004-02-23).freeze,
164
+ :"dc11:description" => %(Web Of Trust \(wot\) RDF vocabulary, described using W3C RDF Schema and the Web Ontology Language.).freeze,
165
+ :"dc11:title" => %(Web Of Trust vocabulary).freeze,
166
+ label: "".freeze,
167
+ :"owl:imports" => [%(http://www.w3.org/2000/01/rdf-schema).freeze, %(http://www.w3.org/2002/07/owl).freeze],
168
+ :"rdfs:seeAlso" => %(foaf:).freeze,
169
+ type: "owl:Ontology".freeze
170
+ end
171
+ end
@@ -0,0 +1,12 @@
1
+ # -*- encoding: utf-8 -*-
2
+ # frozen_string_literal: true
3
+ # This file generated automatically using vocab-fetch from http://www.w3.org/1999/xhtml#
4
+ require 'rdf'
5
+ module RDF::Vocab
6
+ # @!parse
7
+ # # Vocabulary for <http://www.w3.org/1999/xhtml#>
8
+ # class XHTML < RDF::Vocabulary
9
+ # end
10
+ class XHTML < RDF::Vocabulary("http://www.w3.org/1999/xhtml#")
11
+ end
12
+ end
@@ -0,0 +1,509 @@
1
+ # -*- encoding: utf-8 -*-
2
+ # frozen_string_literal: true
3
+ # This file generated automatically using vocab-fetch from http://www.w3.org/1999/xhtml/vocab#
4
+ require 'rdf'
5
+ module RDF::Vocab
6
+ # @!parse
7
+ # # Vocabulary for <http://www.w3.org/1999/xhtml/vocab#>
8
+ # class XHV < RDF::Vocabulary
9
+ # end
10
+ class XHV < RDF::Vocabulary("http://www.w3.org/1999/xhtml/vocab#")
11
+
12
+ # Property definitions
13
+ property :alert,
14
+ comment: %(A message
15
+ with important, and usually time-sensitive, information. Also see
16
+ alertdialog and status.).freeze,
17
+ label: "alert".freeze,
18
+ type: "rdf:Property".freeze
19
+ property :alertdialog,
20
+ comment: %(A
21
+ type of dialog that contains an alert message, where initial focus goes
22
+ to the dialog or an element within it. Also see alert and dialog.).freeze,
23
+ label: "alertdialog".freeze,
24
+ type: "rdf:Property".freeze
25
+ property :alternate,
26
+ comment: %(alternate designates alternate
27
+ versions for a resource.).freeze,
28
+ label: "alternate".freeze,
29
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
30
+ type: "rdf:Property".freeze
31
+ property :appendix,
32
+ comment: %(appendix refers to a resource serving
33
+ as an appendix in a collection. ).freeze,
34
+ label: "appendix".freeze,
35
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
36
+ type: "rdf:Property".freeze
37
+ property :application,
38
+ comment: %(A
39
+ region declared as a web application, as opposed to a web document.).freeze,
40
+ label: "application".freeze,
41
+ type: "rdf:Property".freeze
42
+ property :article,
43
+ comment: %(A
44
+ section of a page consisting of an independent part of a document, page,
45
+ or site.).freeze,
46
+ label: "article".freeze,
47
+ type: "rdf:Property".freeze
48
+ property :banner,
49
+ comment: %(banner contains the prime heading or
50
+ internal title of a page. ).freeze,
51
+ label: "banner".freeze,
52
+ :"rdfs:member" => %(xhv:role-properties).freeze,
53
+ type: "rdf:Property".freeze
54
+ property :bookmark,
55
+ comment: %(bookmark refers to a bookmark - a link
56
+ to a key entry point within an extended document. ).freeze,
57
+ label: "bookmark".freeze,
58
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
59
+ type: "rdf:Property".freeze
60
+ property :button,
61
+ comment: %(An input
62
+ that allows for user-triggered actions when clicked or pressed.).freeze,
63
+ label: "button".freeze,
64
+ type: "rdf:Property".freeze
65
+ property :chapter,
66
+ comment: %(chapter refers to a resource serving
67
+ as a chapter in a collction. ).freeze,
68
+ label: "chapter".freeze,
69
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
70
+ type: "rdf:Property".freeze
71
+ property :checkbox,
72
+ comment: %(An
73
+ checkable input that has three possible values: true, false, or
74
+ mixed.).freeze,
75
+ label: "checkbox".freeze,
76
+ type: "rdf:Property".freeze
77
+ property :cite,
78
+ comment: %(cite refers to a resource that defines
79
+ a citation. ).freeze,
80
+ label: "cite".freeze,
81
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
82
+ type: "rdf:Property".freeze
83
+ property :columnheader,
84
+ comment: %(A
85
+ cell containing header information for a column.).freeze,
86
+ label: "columnheader".freeze,
87
+ type: "rdf:Property".freeze
88
+ property :combobox,
89
+ comment: %(A
90
+ presentation of a select; usually similar to a textbox where users can
91
+ type ahead to select an option, or type to enter arbitrary text as a new
92
+ item in the list.).freeze,
93
+ label: "combobox".freeze,
94
+ type: "rdf:Property".freeze
95
+ property :complementary,
96
+ comment: %(secondary indicates that the section
97
+ supports but is separable from the main content of resource.).freeze,
98
+ label: "complementary".freeze,
99
+ :"rdfs:member" => %(xhv:role-properties).freeze,
100
+ type: "rdf:Property".freeze
101
+ property :contentinfo,
102
+ comment: %(contentinfo has meta information about
103
+ the content on the page or the page as a whole.).freeze,
104
+ label: "contentinfo".freeze,
105
+ :"rdfs:member" => %(xhv:role-properties).freeze,
106
+ type: "rdf:Property".freeze
107
+ property :contents,
108
+ comment: %(contents refers to a resource serving
109
+ as a table of contents. ).freeze,
110
+ label: "contents".freeze,
111
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
112
+ type: "rdf:Property".freeze
113
+ property :copyright,
114
+ comment: %(copyright refers to a copyright
115
+ statement for the resource. ).freeze,
116
+ label: "copyright".freeze,
117
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
118
+ type: "rdf:Property".freeze
119
+ property :definition,
120
+ comment: %(definition indicates the definition of
121
+ a term or concept.).freeze,
122
+ label: "definition".freeze,
123
+ :"rdfs:member" => %(xhv:role-properties).freeze,
124
+ type: "rdf:Property".freeze
125
+ property :dialog,
126
+ comment: %(A dialog
127
+ is an application window that is designed to interrupt the current
128
+ processing of an application in order to prompt the user to enter
129
+ information or require a response. Also see alertdialog.).freeze,
130
+ label: "dialog".freeze,
131
+ type: "rdf:Property".freeze
132
+ property :directory,
133
+ comment: %(A list
134
+ of references to members of a group, such as a static table of
135
+ contents.).freeze,
136
+ label: "directory".freeze,
137
+ type: "rdf:Property".freeze
138
+ property :document,
139
+ comment: %(A
140
+ region containing related information that is declared as document
141
+ content, as opposed to a web application.).freeze,
142
+ label: "document".freeze,
143
+ type: "rdf:Property".freeze
144
+ property :first,
145
+ comment: %(first refers the first item in a
146
+ collection \(see also start and top\).).freeze,
147
+ label: "first".freeze,
148
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
149
+ type: "rdf:Property".freeze
150
+ property :glossary,
151
+ comment: %(glossary refers to a resource
152
+ providing a glossary of terms. ).freeze,
153
+ label: "glossary".freeze,
154
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
155
+ type: "rdf:Property".freeze
156
+ property :grid,
157
+ comment: %(A grid
158
+ contains cells of tabular data arranged in rows and columns, like a
159
+ table.).freeze,
160
+ label: "grid".freeze,
161
+ type: "rdf:Property".freeze
162
+ property :gridcell,
163
+ comment: %(A cell
164
+ in a grid or treegrid.).freeze,
165
+ label: "gridcell".freeze,
166
+ type: "rdf:Property".freeze
167
+ property :group,
168
+ comment: %(A set of
169
+ user interface objects which would not be included in a page summary or
170
+ table of contents by an assistive technology.).freeze,
171
+ label: "group".freeze,
172
+ type: "rdf:Property".freeze
173
+ property :heading,
174
+ comment: %(A
175
+ heading for a section of the page.).freeze,
176
+ label: "heading".freeze,
177
+ type: "rdf:Property".freeze
178
+ property :help,
179
+ comment: %(help refers to a resource offering
180
+ help. ).freeze,
181
+ label: "help".freeze,
182
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
183
+ type: "rdf:Property".freeze
184
+ property :icon,
185
+ comment: %(icon refers to a resource that
186
+ represents an icon. ).freeze,
187
+ label: "icon".freeze,
188
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
189
+ type: "rdf:Property".freeze
190
+ property :img,
191
+ comment: %(A container
192
+ for a collection of elements that form an image.).freeze,
193
+ label: "img".freeze,
194
+ type: "rdf:Property".freeze
195
+ property :index,
196
+ comment: %(index refers to a resource providing
197
+ an index. ).freeze,
198
+ label: "index".freeze,
199
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
200
+ type: "rdf:Property".freeze
201
+ property :itsRules,
202
+ comment: %(itsRules indicates that the designated
203
+ resource is an [ITS] rule set.).freeze,
204
+ label: "itsRules".freeze,
205
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
206
+ type: "rdf:Property".freeze
207
+ property :last,
208
+ comment: %(last refers to the last resource in a
209
+ collection of resources. ).freeze,
210
+ label: "last".freeze,
211
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
212
+ type: "rdf:Property".freeze
213
+ property :license,
214
+ comment: %(license refers to a resource that
215
+ defines the associated license. ).freeze,
216
+ label: "license".freeze,
217
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
218
+ type: "rdf:Property".freeze
219
+ property :link,
220
+ comment: %(An
221
+ interactive reference to an internal or external resource.).freeze,
222
+ label: "link".freeze,
223
+ type: "rdf:Property".freeze
224
+ property :list,
225
+ comment: %(A group of
226
+ non-interactive list items.).freeze,
227
+ label: "list".freeze,
228
+ type: "rdf:Property".freeze
229
+ property :listbox,
230
+ comment: %(A widget
231
+ that allows the user to select one or more items from a list of
232
+ choices.).freeze,
233
+ label: "listbox".freeze,
234
+ type: "rdf:Property".freeze
235
+ property :listitem,
236
+ comment: %(A
237
+ single item in a list, listbox, or directory.).freeze,
238
+ label: "listitem".freeze,
239
+ type: "rdf:Property".freeze
240
+ property :log,
241
+ comment: %(A type of
242
+ live region where new information is added in meaningful order and old
243
+ information may disappear. Also see marquee.).freeze,
244
+ label: "log".freeze,
245
+ type: "rdf:Property".freeze
246
+ property :main,
247
+ comment: %(main acts as the main content of the
248
+ document. ).freeze,
249
+ label: "main".freeze,
250
+ :"rdfs:member" => %(xhv:role-properties).freeze,
251
+ type: "rdf:Property".freeze
252
+ property :marquee,
253
+ comment: %(A type
254
+ of live region where non-essential information changes frequently. Also
255
+ see log.).freeze,
256
+ label: "marquee".freeze,
257
+ type: "rdf:Property".freeze
258
+ property :math,
259
+ comment: %(An element
260
+ that represents a mathematical expression.).freeze,
261
+ label: "math".freeze,
262
+ type: "rdf:Property".freeze
263
+ property :menu,
264
+ comment: %(A type of
265
+ widget that offers a list of choices to the user.).freeze,
266
+ label: "menu".freeze,
267
+ type: "rdf:Property".freeze
268
+ property :menubar,
269
+ comment: %(A
270
+ presentation of menu that usually remains visible and is usually
271
+ presented horizontally.).freeze,
272
+ label: "menubar".freeze,
273
+ type: "rdf:Property".freeze
274
+ property :menuitem,
275
+ comment: %(An
276
+ option in a group of choices contained by a menu or menubar.).freeze,
277
+ label: "menuitem".freeze,
278
+ type: "rdf:Property".freeze
279
+ property :menuitemcheckbox,
280
+ comment: %(A checkable menuitem that has three possible
281
+ values: true, false, or mixed.).freeze,
282
+ label: "menuitemcheckbox".freeze,
283
+ type: "rdf:Property".freeze
284
+ property :menuitemradio,
285
+ comment: %(A
286
+ checkable menuitem in a group of menuitemradio roles, only one of which
287
+ can be checked at a time.).freeze,
288
+ label: "menuitemradio".freeze,
289
+ type: "rdf:Property".freeze
290
+ property :meta,
291
+ comment: %(meta refers to a resource that
292
+ provides metadata. ).freeze,
293
+ label: "meta".freeze,
294
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
295
+ type: "rdf:Property".freeze
296
+ property :navigation,
297
+ comment: %(navigation indicates a collection of
298
+ items suitable for navigating the document or related documents.).freeze,
299
+ label: "navigation".freeze,
300
+ :"rdfs:member" => %(xhv:role-properties).freeze,
301
+ type: "rdf:Property".freeze
302
+ property :next,
303
+ comment: %(next refers to the next resource
304
+ \(after the current one\) in an ordered collection of resources. ).freeze,
305
+ label: "next".freeze,
306
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
307
+ type: "rdf:Property".freeze
308
+ property :note,
309
+ comment: %(note indicates the content is
310
+ parenthetic or ancillary to the main content of the resource. ).freeze,
311
+ label: "note".freeze,
312
+ :"rdfs:member" => %(xhv:role-properties).freeze,
313
+ type: "rdf:Property".freeze
314
+ property :option,
315
+ comment: %(A
316
+ selectable item in a select list.).freeze,
317
+ label: "option".freeze,
318
+ type: "rdf:Property".freeze
319
+ property :p3pv1,
320
+ comment: %(p3pv1 refers to a P3P Policy Reference
321
+ File [P3P]. ).freeze,
322
+ label: "p3pv1".freeze,
323
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
324
+ type: "rdf:Property".freeze
325
+ property :presentation,
326
+ comment: %(An
327
+ element whose role is presentational and does not need to be mapped to
328
+ the accessibility API.).freeze,
329
+ label: "presentation".freeze,
330
+ type: "rdf:Property".freeze
331
+ property :prev,
332
+ comment: %(prev refers to a previous resource
333
+ \(before the current one\) in an ordered collection of resources. ).freeze,
334
+ label: "prev".freeze,
335
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
336
+ type: "rdf:Property".freeze
337
+ property :progressbar,
338
+ comment: %(An
339
+ element that displays the progress status for tasks that take a long
340
+ time.).freeze,
341
+ label: "progressbar".freeze,
342
+ type: "rdf:Property".freeze
343
+ property :radio,
344
+ comment: %(A
345
+ checkable input in a group of radio roles, only one of which can be
346
+ checked at a time.).freeze,
347
+ label: "radio".freeze,
348
+ type: "rdf:Property".freeze
349
+ property :radiogroup,
350
+ comment: %(A
351
+ group of radio buttons.).freeze,
352
+ label: "radiogroup".freeze,
353
+ type: "rdf:Property".freeze
354
+ property :region,
355
+ comment: %(A large
356
+ perceivable section of a web page or document, that the author feels
357
+ should be included in a summary of page features.).freeze,
358
+ label: "region".freeze,
359
+ type: "rdf:Property".freeze
360
+ property :role,
361
+ comment: %(role indicates the purpose of the
362
+ resource. See the XHTML Role
363
+ Vocabulary for roles in this vocabulary space, and XHTMLROLE for information on extending the
364
+ collection of roles. ).freeze,
365
+ label: "role".freeze,
366
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
367
+ type: ["rdf:Bag".freeze, "rdf:Property".freeze]
368
+ property :row,
369
+ comment: %(A row of
370
+ cells in a grid.).freeze,
371
+ label: "row".freeze,
372
+ type: "rdf:Property".freeze
373
+ property :rowheader,
374
+ comment: %(A cell
375
+ containing header information for a row in a grid.).freeze,
376
+ label: "rowheader".freeze,
377
+ type: "rdf:Property".freeze
378
+ property :search,
379
+ comment: %(search indicates that the section
380
+ provides a search facility. ).freeze,
381
+ label: "search".freeze,
382
+ :"rdfs:member" => %(xhv:role-properties).freeze,
383
+ type: "rdf:Property".freeze
384
+ property :section,
385
+ comment: %(section refers to a resource serving
386
+ as a section in a collection. ).freeze,
387
+ label: "section".freeze,
388
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
389
+ type: "rdf:Property".freeze
390
+ property :separator,
391
+ comment: %(A
392
+ divider that separates and distinguishes sections of content or groups of
393
+ menuitems.).freeze,
394
+ label: "separator".freeze,
395
+ type: "rdf:Property".freeze
396
+ property :slider,
397
+ comment: %(A user
398
+ input where the user selects a value from within a given range.).freeze,
399
+ label: "slider".freeze,
400
+ type: "rdf:Property".freeze
401
+ property :spinbutton,
402
+ comment: %(A
403
+ form of range that expects a user to select from amongst discrete
404
+ choices.).freeze,
405
+ label: "spinbutton".freeze,
406
+ type: "rdf:Property".freeze
407
+ property :start,
408
+ comment: %(start refers to the first resource in
409
+ a collection of resources. ).freeze,
410
+ label: "start".freeze,
411
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
412
+ type: "rdf:Property".freeze
413
+ property :status,
414
+ comment: %(A
415
+ container whose content is advisory information for the user but is not
416
+ important enough to justify an alert. Also see alert.).freeze,
417
+ label: "status".freeze,
418
+ type: "rdf:Property".freeze
419
+ property :stylesheet,
420
+ comment: %(stylesheet refers to a resource
421
+ serving as a stylesheet for a resource. ).freeze,
422
+ label: "stylesheet".freeze,
423
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
424
+ type: "rdf:Property".freeze
425
+ property :subsection,
426
+ comment: %(subsection refers to a resource
427
+ serving as a subsection in a collection. ).freeze,
428
+ label: "subsection".freeze,
429
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
430
+ type: "rdf:Property".freeze
431
+ property :tab,
432
+ comment: %(A header for
433
+ a tabpanel.).freeze,
434
+ label: "tab".freeze,
435
+ type: "rdf:Property".freeze
436
+ property :tablist,
437
+ comment: %(A list
438
+ of tab elements, which are references to tabpanel elements.).freeze,
439
+ label: "tablist".freeze,
440
+ type: "rdf:Property".freeze
441
+ property :tabpanel,
442
+ comment: %(A
443
+ container for the resources associated with a tab.).freeze,
444
+ label: "tabpanel".freeze,
445
+ type: "rdf:Property".freeze
446
+ property :textbox,
447
+ comment: %(Input
448
+ that allows free-form text as their value.).freeze,
449
+ label: "textbox".freeze,
450
+ type: "rdf:Property".freeze
451
+ property :timer,
452
+ comment: %(A
453
+ numerical counter which indicates an amount of elapsed time from a start
454
+ point, or the time remaining until an end point.).freeze,
455
+ label: "timer".freeze,
456
+ type: "rdf:Property".freeze
457
+ property :toolbar,
458
+ comment: %(A
459
+ collection of commonly used function buttons represented in compact
460
+ visual form.).freeze,
461
+ label: "toolbar".freeze,
462
+ type: "rdf:Property".freeze
463
+ property :tooltip,
464
+ comment: %(A
465
+ contextual popup that displays a description for an element in a mouse
466
+ hover or keyboard focused state. Supplement to the normal tooltip
467
+ processing of the user agent.).freeze,
468
+ label: "tooltip".freeze,
469
+ type: "rdf:Property".freeze
470
+ property :top,
471
+ comment: %(top is a synonym for start. ).freeze,
472
+ label: "top".freeze,
473
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
474
+ type: "rdf:Property".freeze
475
+ property :tree,
476
+ comment: %(A type of
477
+ list that may contain sub-level nested groups that can be collapsed and
478
+ expanded.).freeze,
479
+ label: "tree".freeze,
480
+ type: "rdf:Property".freeze
481
+ property :treegrid,
482
+ comment: %(A grid
483
+ whose rows can be expanded and collapsed in the same manner as for a
484
+ tree.).freeze,
485
+ label: "treegrid".freeze,
486
+ type: "rdf:Property".freeze
487
+ property :treeitem,
488
+ comment: %(An
489
+ option item of a tree. This is an element within a tree that may be
490
+ expanded or collapsed if it contains a sub-level group of treeitems.).freeze,
491
+ label: "treeitem".freeze,
492
+ type: "rdf:Property".freeze
493
+ property :up,
494
+ comment: %(up refers to a resource "above" in a
495
+ hierarchically structured set. ).freeze,
496
+ label: "up".freeze,
497
+ :"rdfs:member" => %(xhv:relrev-properties).freeze,
498
+ type: "rdf:Property".freeze
499
+
500
+ # Extra definitions
501
+ term :"relrev-properties",
502
+ label: "relrev-properties".freeze,
503
+ :"rdfs:member" => %(xhv:role-properties).freeze,
504
+ type: "rdf:Bag".freeze
505
+ term :"role-properties",
506
+ label: "role-properties".freeze,
507
+ type: ["rdf:Bag".freeze, "rdfs:member".freeze]
508
+ end
509
+ end