rdf-vocab 3.1.4 → 3.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -1
  3. data/README.md +69 -45
  4. data/VERSION +1 -1
  5. data/lib/rdf/vocab.rb +14 -28
  6. data/lib/rdf/vocab/acl.rb +84 -1
  7. data/lib/rdf/vocab/as.rb +466 -1
  8. data/lib/rdf/vocab/bf2.rb +1317 -1
  9. data/lib/rdf/vocab/bibframe.rb +1 -2
  10. data/lib/rdf/vocab/bibo.rb +496 -1
  11. data/lib/rdf/vocab/cc.rb +107 -1
  12. data/lib/rdf/vocab/cert.rb +68 -1
  13. data/lib/rdf/vocab/cnt.rb +79 -1
  14. data/lib/rdf/vocab/crm.rb +1303 -1
  15. data/lib/rdf/vocab/datacite.rb +1 -1
  16. data/lib/rdf/vocab/dbo.rb +10463 -1
  17. data/lib/rdf/vocab/dc.rb +1 -1
  18. data/lib/rdf/vocab/dc11.rb +63 -1
  19. data/lib/rdf/vocab/dcat.rb +152 -4
  20. data/lib/rdf/vocab/dcmitype.rb +1 -1
  21. data/lib/rdf/vocab/disco.rb +228 -1
  22. data/lib/rdf/vocab/doap.rb +175 -1
  23. data/lib/rdf/vocab/dwc.rb +753 -1
  24. data/lib/rdf/vocab/earl.rb +135 -1
  25. data/lib/rdf/vocab/ebucore.rb +7335 -1974
  26. data/lib/rdf/vocab/edm.rb +150 -1
  27. data/lib/rdf/vocab/exif.rb +650 -1
  28. data/lib/rdf/vocab/extensions.rb +253 -203
  29. data/lib/rdf/vocab/fcrepo4.rb +377 -1
  30. data/lib/rdf/vocab/foaf.rb +305 -1
  31. data/lib/rdf/vocab/geo.rb +39 -1
  32. data/lib/rdf/vocab/geojson.rb +66 -1
  33. data/lib/rdf/vocab/geonames.rb +166 -1
  34. data/lib/rdf/vocab/gr.rb +684 -1
  35. data/lib/rdf/vocab/gs1.rb +1597 -1
  36. data/lib/rdf/vocab/ht.rb +164 -1
  37. data/lib/rdf/vocab/hydra.rb +236 -2
  38. data/lib/rdf/vocab/iana.rb +230 -1
  39. data/lib/rdf/vocab/ical.rb +462 -1
  40. data/lib/rdf/vocab/identifiers.rb +462 -1
  41. data/lib/rdf/vocab/iiif.rb +136 -1
  42. data/lib/rdf/vocab/jsonld.rb +135 -1
  43. data/lib/rdf/vocab/ldp.rb +130 -1
  44. data/lib/rdf/vocab/lrmi.rb +1 -1
  45. data/lib/rdf/vocab/ma.rb +381 -1
  46. data/lib/rdf/vocab/mads.rb +600 -22
  47. data/lib/rdf/vocab/{marc_relators.rb → marcrelators.rb} +809 -1
  48. data/lib/rdf/vocab/mo.rb +919 -1
  49. data/lib/rdf/vocab/mods.rb +516 -1
  50. data/lib/rdf/vocab/nfo.rb +1 -1
  51. data/lib/rdf/vocab/oa.rb +275 -1
  52. data/lib/rdf/vocab/og.rb +78 -1
  53. data/lib/rdf/vocab/ogc.rb +34 -1
  54. data/lib/rdf/vocab/ore.rb +56 -1
  55. data/lib/rdf/vocab/org.rb +189 -1
  56. data/lib/rdf/vocab/pcdm.rb +47 -1
  57. data/lib/rdf/vocab/pplan.rb +64 -1
  58. data/lib/rdf/vocab/premis.rb +1266 -779
  59. data/lib/rdf/vocab/{premis_event_type.rb → premiseventtype.rb} +155 -1
  60. data/lib/rdf/vocab/prov.rb +619 -1
  61. data/lib/rdf/vocab/ptr.rb +138 -1
  62. data/lib/rdf/vocab/rightsstatements.rb +5 -1
  63. data/lib/rdf/vocab/rsa.rb +30 -1
  64. data/lib/rdf/vocab/rss.rb +1 -1
  65. data/lib/rdf/vocab/schema.rb +10032 -12
  66. data/lib/rdf/vocab/sd.rb +372 -0
  67. data/lib/rdf/vocab/sh.rb +736 -1
  68. data/lib/rdf/vocab/sioc.rb +401 -1
  69. data/lib/rdf/vocab/{sioc_services.rb → siocservices.rb} +38 -1
  70. data/lib/rdf/vocab/{sioct.rb → sioctypes.rb} +158 -1
  71. data/lib/rdf/vocab/skos.rb +119 -1
  72. data/lib/rdf/vocab/skosxl.rb +30 -1
  73. data/lib/rdf/vocab/v.rb +291 -1
  74. data/lib/rdf/vocab/vcard.rb +508 -1
  75. data/lib/rdf/vocab/vmd.rb +291 -1
  76. data/lib/rdf/vocab/void.rb +121 -1
  77. data/lib/rdf/vocab/vs.rb +19 -1
  78. data/lib/rdf/vocab/wdrs.rb +90 -1
  79. data/lib/rdf/vocab/wot.rb +78 -1
  80. data/lib/rdf/vocab/xhtml.rb +2 -1
  81. data/lib/rdf/vocab/xhv.rb +338 -1
  82. data/lib/rdf/vocab/xkos.rb +150 -1
  83. data/spec/extensions_spec.rb +68 -0
  84. data/spec/vocab_spec.rb +10 -0
  85. metadata +15 -8
@@ -5,9 +5,183 @@ require 'rdf'
5
5
  module RDF::Vocab
6
6
  # @!parse
7
7
  # # Vocabulary for <http://usefulinc.com/ns/doap#>
8
+ # #
9
+ # # Description of a Project (DOAP) vocabulary
10
+ # #
11
+ # # The Description of a Project (DOAP) vocabulary, described using W3C RDF Schema and the Web Ontology Language.
8
12
  # class DOAP < RDF::StrictVocabulary
13
+ # # GNU Arch source code repository.
14
+ # # @return [RDF::Vocabulary::Term]
15
+ # attr_reader :ArchRepository
16
+ #
17
+ # # BitKeeper source code repository.
18
+ # # @return [RDF::Vocabulary::Term]
19
+ # attr_reader :BKRepository
20
+ #
21
+ # # Bazaar source code branch.
22
+ # # @return [RDF::Vocabulary::Term]
23
+ # attr_reader :BazaarBranch
24
+ #
25
+ # # CVS source code repository.
26
+ # # @return [RDF::Vocabulary::Term]
27
+ # attr_reader :CVSRepository
28
+ #
29
+ # # darcs source code repository.
30
+ # # @return [RDF::Vocabulary::Term]
31
+ # attr_reader :DarcsRepository
32
+ #
33
+ # # Git source code branch.
34
+ # # @return [RDF::Vocabulary::Term]
35
+ # attr_reader :GitBranch
36
+ #
37
+ # # Git source code repository.
38
+ # # @return [RDF::Vocabulary::Term]
39
+ # attr_reader :GitRepository
40
+ #
41
+ # # Mercurial source code repository.
42
+ # # @return [RDF::Vocabulary::Term]
43
+ # attr_reader :HgRepository
44
+ #
45
+ # # A project.
46
+ # # @return [RDF::Vocabulary::Term]
47
+ # attr_reader :Project
48
+ #
49
+ # # Source code repository.
50
+ # # @return [RDF::Vocabulary::Term]
51
+ # attr_reader :Repository
52
+ #
53
+ # # Subversion source code repository.
54
+ # # @return [RDF::Vocabulary::Term]
55
+ # attr_reader :SVNRepository
56
+ #
57
+ # # A specification of a system's aspects, technical or otherwise.
58
+ # # @return [RDF::Vocabulary::Term]
59
+ # attr_reader :Specification
60
+ #
61
+ # # Version information of a project release.
62
+ # # @return [RDF::Vocabulary::Term]
63
+ # attr_reader :Version
64
+ #
65
+ # # Description of target user base
66
+ # # @return [RDF::Vocabulary::Term]
67
+ # attr_reader :audience
68
+ #
69
+ # # URI of a blog related to a project
70
+ # # @return [RDF::Vocabulary::Term]
71
+ # attr_reader :blog
72
+ #
73
+ # # Web browser interface to repository.
74
+ # # @return [RDF::Vocabulary::Term]
75
+ # attr_reader :browse
76
+ #
77
+ # # A category of project.
78
+ # # @return [RDF::Vocabulary::Term]
79
+ # attr_reader :category
80
+ #
81
+ # # Date when something was created, in YYYY-MM-DD form. e.g. 2004-04-05
82
+ # # @return [RDF::Vocabulary::Term]
83
+ # attr_reader :created
84
+ #
85
+ # # Plain text description of a project, of 2-4 sentences in length.
86
+ # # @return [RDF::Vocabulary::Term]
87
+ # attr_reader :description
88
+ #
89
+ # # Developer of software for the project.
90
+ # # @return [RDF::Vocabulary::Term]
91
+ # attr_reader :developer
92
+ #
93
+ # # Contributor of documentation to the project.
94
+ # # @return [RDF::Vocabulary::Term]
95
+ # attr_reader :documenter
96
+ #
97
+ # # Project contributor.
98
+ # # @return [RDF::Vocabulary::Term]
99
+ # attr_reader :helper
100
+ #
101
+ # # URL of a project's homepage, associated with exactly one project.
102
+ # # @return [RDF::Vocabulary::Term]
103
+ # attr_reader :homepage
104
+ #
105
+ # # A specification that a project implements. Could be a standard, API or legally defined level of conformance.
106
+ # # @return [RDF::Vocabulary::Term]
107
+ # attr_reader :implements
108
+ #
109
+ # # ISO language code a project has been translated into
110
+ # # @return [RDF::Vocabulary::Term]
111
+ # attr_reader :language
112
+ #
113
+ # # The URI of an RDF description of the license the software is distributed under. E.g. a SPDX reference
114
+ # # @return [RDF::Vocabulary::Term]
115
+ # attr_reader :license
116
+ #
117
+ # # Location of a repository.
118
+ # # @return [RDF::Vocabulary::Term]
119
+ # attr_reader :location
120
+ #
121
+ # # Maintainer of a project, a project leader.
122
+ # # @return [RDF::Vocabulary::Term]
123
+ # attr_reader :maintainer
124
+ #
125
+ # # Module name of a Subversion, CVS, BitKeeper or Arch repository.
126
+ # # @return [RDF::Vocabulary::Term]
127
+ # attr_reader :module
128
+ #
129
+ # # A name of something.
130
+ # # @return [RDF::Vocabulary::Term]
131
+ # attr_reader :name
132
+ #
133
+ # # Operating system that a project is limited to. Omit this property if the project is not OS-specific.
134
+ # #
135
+ # # Sistema operativo a que o projeto está limitado. Omita esta propriedade se o projeto não é condicionado pelo SO usado.
136
+ # # @return [RDF::Vocabulary::Term]
137
+ # attr_reader :os
138
+ #
139
+ # # Indicator of software platform (non-OS specific), e.g. Java, Firefox, ECMA CLR
140
+ # # @return [RDF::Vocabulary::Term]
141
+ # attr_reader :platform
142
+ #
143
+ # # A project release.
144
+ # # @return [RDF::Vocabulary::Term]
145
+ # attr_reader :release
146
+ #
147
+ # # Source code repository.
148
+ # # @return [RDF::Vocabulary::Term]
149
+ # attr_reader :repository
150
+ #
151
+ # # The project that uses a repository.
152
+ # # @return [RDF::Vocabulary::Term]
153
+ # attr_reader :repositoryOf
154
+ #
155
+ # # Revision identifier of a software release.
156
+ # # @return [RDF::Vocabulary::Term]
157
+ # attr_reader :revision
158
+ #
159
+ # # Web page with screenshots of project.
160
+ # # @return [RDF::Vocabulary::Term]
161
+ # attr_reader :screenshots
162
+ #
163
+ # # Short (8 or 9 words) plain text description of a project.
164
+ # # @return [RDF::Vocabulary::Term]
165
+ # attr_reader :shortdesc
166
+ #
167
+ # # A tester or other quality control contributor.
168
+ # # @return [RDF::Vocabulary::Term]
169
+ # attr_reader :tester
170
+ #
171
+ # # Contributor of translations to the project.
172
+ # # @return [RDF::Vocabulary::Term]
173
+ # attr_reader :translator
174
+ #
175
+ # # Vendor organization: commercial, free or otherwise
176
+ # # @return [RDF::Vocabulary::Term]
177
+ # attr_reader :vendor
178
+ #
179
+ # # URL of Wiki for collaborative discussion of project.
180
+ # # @return [RDF::Vocabulary::Term]
181
+ # attr_reader :wiki
182
+ #
9
183
  # end
10
- class DOAP < RDF::StrictVocabulary("http://usefulinc.com/ns/doap#")
184
+ DOAP = Class.new(RDF::StrictVocabulary("http://usefulinc.com/ns/doap#")) do
11
185
 
12
186
  # Ontology definition
13
187
  ontology :"http://usefulinc.com/ns/doap#",
@@ -5,9 +5,761 @@ require 'rdf'
5
5
  module RDF::Vocab
6
6
  # @!parse
7
7
  # # Vocabulary for <http://rs.tdwg.org/dwc/terms/>
8
+ # #
9
+ # # Darwin Core Recommended Terms
10
+ # #
11
+ # # This document contains a list of Darwin Core terms that have the dwcattributes:status equal to "recommended". For the full normative RDF document of all Darwin Core terms, see dwctermshistory.rdf. To comment on this schema, please create a new issue in https://github.com/tdwg/dwc/issues
8
12
  # class DWC < RDF::Vocabulary
13
+ # # An action that occurs at some location during some time.
14
+ # # @return [RDF::Vocabulary::Term]
15
+ # attr_reader :Event
16
+ #
17
+ # # A preserved specimen that is a fossil.
18
+ # # @return [RDF::Vocabulary::Term]
19
+ # attr_reader :FossilSpecimen
20
+ #
21
+ # # Geological information, such as stratigraphy, that qualifies a region or place.
22
+ # # @return [RDF::Vocabulary::Term]
23
+ # attr_reader :GeologicalContext
24
+ #
25
+ # # An output of a human observation process.
26
+ # # @return [RDF::Vocabulary::Term]
27
+ # attr_reader :HumanObservation
28
+ #
29
+ # # A taxonomic determination (e.g., the assignment to a taxon).
30
+ # # @return [RDF::Vocabulary::Term]
31
+ # attr_reader :Identification
32
+ #
33
+ # # A specimen that is alive.
34
+ # # @return [RDF::Vocabulary::Term]
35
+ # attr_reader :LivingSpecimen
36
+ #
37
+ # # An output of a machine observation process.
38
+ # # @return [RDF::Vocabulary::Term]
39
+ # attr_reader :MachineObservation
40
+ #
41
+ # # A physical results of a sampling (or subsampling) event. In biological collections, the material sample is typically collected, and either preserved or destructively processed.
42
+ # # @return [RDF::Vocabulary::Term]
43
+ # attr_reader :MaterialSample
44
+ #
45
+ # # A measurement of or fact about an rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource).
46
+ # # @return [RDF::Vocabulary::Term]
47
+ # attr_reader :MeasurementOrFact
48
+ #
49
+ # # An existence of an Organism (sensu http://rs.tdwg.org/dwc/terms/Organism) at a particular place at a particular time.
50
+ # # @return [RDF::Vocabulary::Term]
51
+ # attr_reader :Occurrence
52
+ #
53
+ # # A particular organism or defined group of organisms considered to be taxonomically homogeneous.
54
+ # # @return [RDF::Vocabulary::Term]
55
+ # attr_reader :Organism
56
+ #
57
+ # # A specimen that has been preserved.
58
+ # # @return [RDF::Vocabulary::Term]
59
+ # attr_reader :PreservedSpecimen
60
+ #
61
+ # # A relationship of one rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource) to another.
62
+ # # @return [RDF::Vocabulary::Term]
63
+ # attr_reader :ResourceRelationship
64
+ #
65
+ # # A group of organisms (sensu http://purl.obolibrary.org/obo/OBI_0100026) considered by taxonomists to form a homogeneous unit.
66
+ # # @return [RDF::Vocabulary::Term]
67
+ # attr_reader :Taxon
68
+ #
69
+ # # The full name, with authorship and date information if known, of the currently valid (zoological) or accepted (botanical) taxon.
70
+ # # @return [RDF::Vocabulary::Term]
71
+ # attr_reader :acceptedNameUsage
72
+ #
73
+ # # An identifier for the name usage (documented meaning of the name according to a source) of the currently valid (zoological) or accepted (botanical) taxon.
74
+ # # @return [RDF::Vocabulary::Term]
75
+ # attr_reader :acceptedNameUsageID
76
+ #
77
+ # # Abstract term to attribute information to a source.
78
+ # # @return [RDF::Vocabulary::Term]
79
+ # attr_reader :accordingTo
80
+ #
81
+ # # A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of media associated with the Occurrence.
82
+ # # @return [RDF::Vocabulary::Term]
83
+ # attr_reader :associatedMedia
84
+ #
85
+ # # A list (concatenated and separated) of identifiers of other Occurrence records and their associations to this Occurrence.
86
+ # # @return [RDF::Vocabulary::Term]
87
+ # attr_reader :associatedOccurrences
88
+ #
89
+ # # A list (concatenated and separated) of identifiers of other Organisms and their associations to this Organism.
90
+ # # @return [RDF::Vocabulary::Term]
91
+ # attr_reader :associatedOrganisms
92
+ #
93
+ # # A list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the Occurrence.
94
+ # # @return [RDF::Vocabulary::Term]
95
+ # attr_reader :associatedReferences
96
+ #
97
+ # # A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of genetic sequence information associated with the Occurrence.
98
+ # # @return [RDF::Vocabulary::Term]
99
+ # attr_reader :associatedSequences
100
+ #
101
+ # # A list (concatenated and separated) of identifiers or names of taxa and their associations with the Occurrence.
102
+ # # @return [RDF::Vocabulary::Term]
103
+ # attr_reader :associatedTaxa
104
+ #
105
+ # # The specific nature of the data record.
106
+ # # @return [RDF::Vocabulary::Term]
107
+ # attr_reader :basisOfRecord
108
+ #
109
+ # # The full name of the lithostratigraphic bed from which the cataloged item was collected.
110
+ # # @return [RDF::Vocabulary::Term]
111
+ # attr_reader :bed
112
+ #
113
+ # # A description of the behavior shown by the subject at the time the Occurrence was recorded. Recommended best practice is to use a controlled vocabulary.
114
+ # # @return [RDF::Vocabulary::Term]
115
+ # attr_reader :behavior
116
+ #
117
+ # # An identifier (preferably unique) for the record within the data set or collection.
118
+ # # @return [RDF::Vocabulary::Term]
119
+ # attr_reader :catalogNumber
120
+ #
121
+ # # The full scientific name of the class in which the taxon is classified.
122
+ # # @return [RDF::Vocabulary::Term]
123
+ # attr_reader :class
124
+ #
125
+ # # The name, acronym, coden, or initialism identifying the collection or data set from which the record was derived.
126
+ # # @return [RDF::Vocabulary::Term]
127
+ # attr_reader :collectionCode
128
+ #
129
+ # # An identifier for the collection or dataset from which the record was derived.
130
+ # # @return [RDF::Vocabulary::Term]
131
+ # attr_reader :collectionID
132
+ #
133
+ # # The name of the continent in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.
134
+ # # @return [RDF::Vocabulary::Term]
135
+ # attr_reader :continent
136
+ #
137
+ # # A decimal representation of the precision of the coordinates given in the decimalLatitude and decimalLongitude.
138
+ # # @return [RDF::Vocabulary::Term]
139
+ # attr_reader :coordinatePrecision
140
+ #
141
+ # # The horizontal distance (in meters) from the given decimalLatitude and decimalLongitude describing the smallest circle containing the whole of the Location. Leave the value empty if the uncertainty is unknown, cannot be estimated, or is not applicable (because there are no coordinates). Zero is not a valid value for this term.
142
+ # # @return [RDF::Vocabulary::Term]
143
+ # attr_reader :coordinateUncertaintyInMeters
144
+ #
145
+ # # The name of the country or major administrative unit in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.
146
+ # # @return [RDF::Vocabulary::Term]
147
+ # attr_reader :country
148
+ #
149
+ # # The standard code for the country in which the Location occurs. Recommended best practice is to use ISO 3166-1-alpha-2 country codes.
150
+ # # @return [RDF::Vocabulary::Term]
151
+ # attr_reader :countryCode
152
+ #
153
+ # # The full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the Location occurs.
154
+ # # @return [RDF::Vocabulary::Term]
155
+ # attr_reader :county
156
+ #
157
+ # # Actions taken to make the shared data less specific or complete than in its original form. Suggests that alternative data of higher quality may be available on request.
158
+ # # @return [RDF::Vocabulary::Term]
159
+ # attr_reader :dataGeneralizations
160
+ #
161
+ # # An identifier for the set of data. May be a global unique identifier or an identifier specific to a collection or institution.
162
+ # # @return [RDF::Vocabulary::Term]
163
+ # attr_reader :datasetID
164
+ #
165
+ # # The name identifying the data set from which the record was derived.
166
+ # # @return [RDF::Vocabulary::Term]
167
+ # attr_reader :datasetName
168
+ #
169
+ # # The date on which the subject was identified as representing the Taxon. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).
170
+ # # @return [RDF::Vocabulary::Term]
171
+ # attr_reader :dateIdentified
172
+ #
173
+ # # The integer day of the month on which the Event occurred.
174
+ # # @return [RDF::Vocabulary::Term]
175
+ # attr_reader :day
176
+ #
177
+ # # The geographic latitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location. Positive values are north of the Equator, negative values are south of it. Legal values lie between -90 and 90, inclusive.
178
+ # # @return [RDF::Vocabulary::Term]
179
+ # attr_reader :decimalLatitude
180
+ #
181
+ # # The geographic longitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location. Positive values are east of the Greenwich Meridian, negative values are west of it. Legal values lie between -180 and 180, inclusive.
182
+ # # @return [RDF::Vocabulary::Term]
183
+ # attr_reader :decimalLongitude
184
+ #
185
+ # # The current state of a specimen with respect to the collection identified in collectionCode or collectionID. Recommended best practice is to use a controlled vocabulary.
186
+ # # @return [RDF::Vocabulary::Term]
187
+ # attr_reader :disposition
188
+ #
189
+ # # A list of additional measurements, facts, characteristics, or assertions about the record. Meant to provide a mechanism for structured content.
190
+ # # @return [RDF::Vocabulary::Term]
191
+ # attr_reader :dynamicProperties
192
+ #
193
+ # # The full name of the earliest possible geochronologic age or lowest chronostratigraphic stage attributable to the stratigraphic horizon from which the cataloged item was collected.
194
+ # # @return [RDF::Vocabulary::Term]
195
+ # attr_reader :earliestAgeOrLowestStage
196
+ #
197
+ # # The full name of the earliest possible geochronologic eon or lowest chrono-stratigraphic eonothem or the informal name ("Precambrian") attributable to the stratigraphic horizon from which the cataloged item was collected.
198
+ # # @return [RDF::Vocabulary::Term]
199
+ # attr_reader :earliestEonOrLowestEonothem
200
+ #
201
+ # # The full name of the earliest possible geochronologic epoch or lowest chronostratigraphic series attributable to the stratigraphic horizon from which the cataloged item was collected.
202
+ # # @return [RDF::Vocabulary::Term]
203
+ # attr_reader :earliestEpochOrLowestSeries
204
+ #
205
+ # # The full name of the earliest possible geochronologic era or lowest chronostratigraphic erathem attributable to the stratigraphic horizon from which the cataloged item was collected.
206
+ # # @return [RDF::Vocabulary::Term]
207
+ # attr_reader :earliestEraOrLowestErathem
208
+ #
209
+ # # The full name of the earliest possible geochronologic period or lowest chronostratigraphic system attributable to the stratigraphic horizon from which the cataloged item was collected.
210
+ # # @return [RDF::Vocabulary::Term]
211
+ # attr_reader :earliestPeriodOrLowestSystem
212
+ #
213
+ # # The latest ordinal day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).
214
+ # # @return [RDF::Vocabulary::Term]
215
+ # attr_reader :endDayOfYear
216
+ #
217
+ # # The process by which the biological individual(s) represented in the Occurrence became established at the location. Recommended best practice is to use a controlled vocabulary.
218
+ # # @return [RDF::Vocabulary::Term]
219
+ # attr_reader :establishmentMeans
220
+ #
221
+ # # The date-time or interval during which an Event occurred. For occurrences, this is the date-time when the event was recorded. Not suitable for a time in a geological context. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).
222
+ # # @return [RDF::Vocabulary::Term]
223
+ # attr_reader :eventDate
224
+ #
225
+ # # An identifier for the set of information associated with an Event (something that occurs at a place and time). May be a global unique identifier or an identifier specific to the data set.
226
+ # # @return [RDF::Vocabulary::Term]
227
+ # attr_reader :eventID
228
+ #
229
+ # # Comments or notes about the Event.
230
+ # # @return [RDF::Vocabulary::Term]
231
+ # attr_reader :eventRemarks
232
+ #
233
+ # # The time or interval during which an Event occurred. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).
234
+ # # @return [RDF::Vocabulary::Term]
235
+ # attr_reader :eventTime
236
+ #
237
+ # # The full scientific name of the family in which the taxon is classified.
238
+ # # @return [RDF::Vocabulary::Term]
239
+ # attr_reader :family
240
+ #
241
+ # # One of a) an indicator of the existence of, b) a reference to (publication, URI), or c) the text of notes taken in the field about the Event.
242
+ # # @return [RDF::Vocabulary::Term]
243
+ # attr_reader :fieldNotes
244
+ #
245
+ # # An identifier given to the event in the field. Often serves as a link between field notes and the Event.
246
+ # # @return [RDF::Vocabulary::Term]
247
+ # attr_reader :fieldNumber
248
+ #
249
+ # # A Well-Known Text (WKT) representation of the Spatial Reference System (SRS) for the footprintWKT of the Location. Do not use this term to describe the SRS of the decimalLatitude and decimalLongitude, even if it is the same as for the footprintWKT - use the geodeticDatum instead.
250
+ # # @return [RDF::Vocabulary::Term]
251
+ # attr_reader :footprintSRS
252
+ #
253
+ # # The ratio of the area of the footprint (footprintWKT) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given footprint does not completely contain the original representation. The footprintSpatialFit is undefined (and should be left blank) if the original representation is a point and the given georeference is not that same point. If both the original and the given georeference are the same point, the footprintSpatialFit is 1.
254
+ # # @return [RDF::Vocabulary::Term]
255
+ # attr_reader :footprintSpatialFit
256
+ #
257
+ # # A Well-Known Text (WKT) representation of the shape (footprint, geometry) that defines the Location. A Location may have both a point-radius representation (see decimalLatitude) and a footprint representation, and they may differ from each other.
258
+ # # @return [RDF::Vocabulary::Term]
259
+ # attr_reader :footprintWKT
260
+ #
261
+ # # The full name of the lithostratigraphic formation from which the cataloged item was collected.
262
+ # # @return [RDF::Vocabulary::Term]
263
+ # attr_reader :formation
264
+ #
265
+ # # The full scientific name of the genus in which the taxon is classified.
266
+ # # @return [RDF::Vocabulary::Term]
267
+ # attr_reader :genus
268
+ #
269
+ # # The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in decimalLatitude and decimalLongitude as based. Recommended best practice is use the EPSG code as a controlled vocabulary to provide an SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value "unknown".
270
+ # # @return [RDF::Vocabulary::Term]
271
+ # attr_reader :geodeticDatum
272
+ #
273
+ # # An identifier for the set of information associated with a GeologicalContext (the location within a geological context, such as stratigraphy). May be a global unique identifier or an identifier specific to the data set.
274
+ # # @return [RDF::Vocabulary::Term]
275
+ # attr_reader :geologicalContextID
276
+ #
277
+ # # A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.
278
+ # # @return [RDF::Vocabulary::Term]
279
+ # attr_reader :georeferenceProtocol
280
+ #
281
+ # # Notes or comments about the spatial description determination, explaining assumptions made in addition or opposition to the those formalized in the method referred to in georeferenceProtocol.
282
+ # # @return [RDF::Vocabulary::Term]
283
+ # attr_reader :georeferenceRemarks
284
+ #
285
+ # # A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resources.
286
+ # # @return [RDF::Vocabulary::Term]
287
+ # attr_reader :georeferenceSources
288
+ #
289
+ # # A categorical description of the extent to which the georeference has been verified to represent the best possible spatial description. Recommended best practice is to use a controlled vocabulary.
290
+ # # @return [RDF::Vocabulary::Term]
291
+ # attr_reader :georeferenceVerificationStatus
292
+ #
293
+ # # A list (concatenated and separated) of names of people, groups, or organizations who determined the georeference (spatial representation) for the Location.
294
+ # # @return [RDF::Vocabulary::Term]
295
+ # attr_reader :georeferencedBy
296
+ #
297
+ # # The date on which the Location was georeferenced. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).
298
+ # # @return [RDF::Vocabulary::Term]
299
+ # attr_reader :georeferencedDate
300
+ #
301
+ # # The full name of the lithostratigraphic group from which the cataloged item was collected.
302
+ # # @return [RDF::Vocabulary::Term]
303
+ # attr_reader :group
304
+ #
305
+ # # A category or description of the habitat in which the Event occurred.
306
+ # # @return [RDF::Vocabulary::Term]
307
+ # attr_reader :habitat
308
+ #
309
+ # # A list (concatenated and separated) of taxa names terminating at the rank immediately superior to the taxon referenced in the taxon record.
310
+ # # @return [RDF::Vocabulary::Term]
311
+ # attr_reader :higherClassification
312
+ #
313
+ # # A list (concatenated and separated) of geographic names less specific than the information captured in the locality term.
314
+ # # @return [RDF::Vocabulary::Term]
315
+ # attr_reader :higherGeography
316
+ #
317
+ # # An identifier for the geographic region within which the Location occurred. Recommended best practice is to use an persistent identifier from a controlled vocabulary such as the Getty Thesaurus of Geographic Names.
318
+ # # @return [RDF::Vocabulary::Term]
319
+ # attr_reader :higherGeographyID
320
+ #
321
+ # # The full name of the highest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected.
322
+ # # @return [RDF::Vocabulary::Term]
323
+ # attr_reader :highestBiostratigraphicZone
324
+ #
325
+ # # An identifier for the Identification (the body of information associated with the assignment of a scientific name). May be a global unique identifier or an identifier specific to the data set.
326
+ # # @return [RDF::Vocabulary::Term]
327
+ # attr_reader :identificationID
328
+ #
329
+ # # A brief phrase or a standard term ("cf.", "aff.") to express the determiner's doubts about the Identification.
330
+ # # @return [RDF::Vocabulary::Term]
331
+ # attr_reader :identificationQualifier
332
+ #
333
+ # # A list (concatenated and separated) of references (publication, global unique identifier, URI) used in the Identification.
334
+ # # @return [RDF::Vocabulary::Term]
335
+ # attr_reader :identificationReferences
336
+ #
337
+ # # Comments or notes about the Identification.
338
+ # # @return [RDF::Vocabulary::Term]
339
+ # attr_reader :identificationRemarks
340
+ #
341
+ # # A categorical indicator of the extent to which the taxonomic identification has been verified to be correct. Recommended best practice is to use a controlled vocabulary such as that used in HISPID/ABCD.
342
+ # # @return [RDF::Vocabulary::Term]
343
+ # attr_reader :identificationVerificationStatus
344
+ #
345
+ # # A list (concatenated and separated) of names of people, groups, or organizations who assigned the Taxon to the subject.
346
+ # # @return [RDF::Vocabulary::Term]
347
+ # attr_reader :identifiedBy
348
+ #
349
+ # # The number of individuals represented present at the time of the Occurrence.
350
+ # # @return [RDF::Vocabulary::Term]
351
+ # attr_reader :individualCount
352
+ #
353
+ # # Additional information that exists, but that has not been shared in the given record.
354
+ # # @return [RDF::Vocabulary::Term]
355
+ # attr_reader :informationWithheld
356
+ #
357
+ # # The name of the lowest or terminal infraspecific epithet of the scientificName, excluding any rank designation.
358
+ # # @return [RDF::Vocabulary::Term]
359
+ # attr_reader :infraspecificEpithet
360
+ #
361
+ # # The name (or acronym) in use by the institution having custody of the object(s) or information referred to in the record.
362
+ # # @return [RDF::Vocabulary::Term]
363
+ # attr_reader :institutionCode
364
+ #
365
+ # # An identifier for the institution having custody of the object(s) or information referred to in the record.
366
+ # # @return [RDF::Vocabulary::Term]
367
+ # attr_reader :institutionID
368
+ #
369
+ # # The name of the island on or near which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.
370
+ # # @return [RDF::Vocabulary::Term]
371
+ # attr_reader :island
372
+ #
373
+ # # The name of the island group in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.
374
+ # # @return [RDF::Vocabulary::Term]
375
+ # attr_reader :islandGroup
376
+ #
377
+ # # The full scientific name of the kingdom in which the taxon is classified.
378
+ # # @return [RDF::Vocabulary::Term]
379
+ # attr_reader :kingdom
380
+ #
381
+ # # The full name of the latest possible geochronologic age or highest chronostratigraphic stage attributable to the stratigraphic horizon from which the cataloged item was collected.
382
+ # # @return [RDF::Vocabulary::Term]
383
+ # attr_reader :latestAgeOrHighestStage
384
+ #
385
+ # # The full name of the latest possible geochronologic eon or highest chrono-stratigraphic eonothem or the informal name ("Precambrian") attributable to the stratigraphic horizon from which the cataloged item was collected.
386
+ # # @return [RDF::Vocabulary::Term]
387
+ # attr_reader :latestEonOrHighestEonothem
388
+ #
389
+ # # The full name of the latest possible geochronologic epoch or highest chronostratigraphic series attributable to the stratigraphic horizon from which the cataloged item was collected.
390
+ # # @return [RDF::Vocabulary::Term]
391
+ # attr_reader :latestEpochOrHighestSeries
392
+ #
393
+ # # The full name of the latest possible geochronologic era or highest chronostratigraphic erathem attributable to the stratigraphic horizon from which the cataloged item was collected.
394
+ # # @return [RDF::Vocabulary::Term]
395
+ # attr_reader :latestEraOrHighestErathem
396
+ #
397
+ # # The full name of the latest possible geochronologic period or highest chronostratigraphic system attributable to the stratigraphic horizon from which the cataloged item was collected.
398
+ # # @return [RDF::Vocabulary::Term]
399
+ # attr_reader :latestPeriodOrHighestSystem
400
+ #
401
+ # # The age class or life stage of the biological individual(s) at the time the Occurrence was recorded. Recommended best practice is to use a controlled vocabulary.
402
+ # # @return [RDF::Vocabulary::Term]
403
+ # attr_reader :lifeStage
404
+ #
405
+ # # The combination of all litho-stratigraphic names for the rock from which the cataloged item was collected.
406
+ # # @return [RDF::Vocabulary::Term]
407
+ # attr_reader :lithostratigraphicTerms
408
+ #
409
+ # # The specific description of the place. Less specific geographic information can be provided in other geographic terms (higherGeography, continent, country, stateProvince, county, municipality, waterBody, island, islandGroup). This term may contain information modified from the original to correct perceived errors or standardize the description.
410
+ # # @return [RDF::Vocabulary::Term]
411
+ # attr_reader :locality
412
+ #
413
+ # # Information about the source of this Location information. Could be a publication (gazetteer), institution, or team of individuals.
414
+ # # @return [RDF::Vocabulary::Term]
415
+ # attr_reader :locationAccordingTo
416
+ #
417
+ # # An identifier for the set of location information (data associated with dcterms:Location). May be a global unique identifier or an identifier specific to the data set.
418
+ # # @return [RDF::Vocabulary::Term]
419
+ # attr_reader :locationID
420
+ #
421
+ # # Comments or notes about the Location.
422
+ # # @return [RDF::Vocabulary::Term]
423
+ # attr_reader :locationRemarks
424
+ #
425
+ # # The full name of the lowest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected.
426
+ # # @return [RDF::Vocabulary::Term]
427
+ # attr_reader :lowestBiostratigraphicZone
428
+ #
429
+ # # An identifier for the MaterialSample (as opposed to a particular digital record of the material sample). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the materialSampleID globally unique.
430
+ # # @return [RDF::Vocabulary::Term]
431
+ # attr_reader :materialSampleID
432
+ #
433
+ # # The greater depth of a range of depth below the local surface, in meters.
434
+ # # @return [RDF::Vocabulary::Term]
435
+ # attr_reader :maximumDepthInMeters
436
+ #
437
+ # # The greater distance in a range of distance from a reference surface in the vertical direction, in meters. Use positive values for locations above the surface, negative values for locations below. If depth measures are given, the reference surface is the location given by the depth, otherwise the reference surface is the location given by the elevation.
438
+ # # @return [RDF::Vocabulary::Term]
439
+ # attr_reader :maximumDistanceAboveSurfaceInMeters
440
+ #
441
+ # # The upper limit of the range of elevation (altitude, usually above sea level), in meters.
442
+ # # @return [RDF::Vocabulary::Term]
443
+ # attr_reader :maximumElevationInMeters
444
+ #
445
+ # # The description of the potential error associated with the measurementValue.
446
+ # # @return [RDF::Vocabulary::Term]
447
+ # attr_reader :measurementAccuracy
448
+ #
449
+ # # A list (concatenated and separated) of names of people, groups, or organizations who determined the value of the MeasurementOrFact.
450
+ # # @return [RDF::Vocabulary::Term]
451
+ # attr_reader :measurementDeterminedBy
452
+ #
453
+ # # The date on which the MeasurementOrFact was made. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).
454
+ # # @return [RDF::Vocabulary::Term]
455
+ # attr_reader :measurementDeterminedDate
456
+ #
457
+ # # An identifier for the MeasurementOrFact (information pertaining to measurements, facts, characteristics, or assertions). May be a global unique identifier or an identifier specific to the data set.
458
+ # # @return [RDF::Vocabulary::Term]
459
+ # attr_reader :measurementID
460
+ #
461
+ # # A description of or reference to (publication, URI) the method or protocol used to determine the measurement, fact, characteristic, or assertion.
462
+ # # @return [RDF::Vocabulary::Term]
463
+ # attr_reader :measurementMethod
464
+ #
465
+ # # Comments or notes accompanying the MeasurementOrFact.
466
+ # # @return [RDF::Vocabulary::Term]
467
+ # attr_reader :measurementRemarks
468
+ #
469
+ # # The nature of the measurement, fact, characteristic, or assertion. Recommended best practice is to use a controlled vocabulary.
470
+ # # @return [RDF::Vocabulary::Term]
471
+ # attr_reader :measurementType
472
+ #
473
+ # # The units associated with the measurementValue. Recommended best practice is to use the International System of Units (SI).
474
+ # # @return [RDF::Vocabulary::Term]
475
+ # attr_reader :measurementUnit
476
+ #
477
+ # # The value of the measurement, fact, characteristic, or assertion.
478
+ # # @return [RDF::Vocabulary::Term]
479
+ # attr_reader :measurementValue
480
+ #
481
+ # # The full name of the lithostratigraphic member from which the cataloged item was collected.
482
+ # # @return [RDF::Vocabulary::Term]
483
+ # attr_reader :member
484
+ #
485
+ # # The lesser depth of a range of depth below the local surface, in meters.
486
+ # # @return [RDF::Vocabulary::Term]
487
+ # attr_reader :minimumDepthInMeters
488
+ #
489
+ # # The lesser distance in a range of distance from a reference surface in the vertical direction, in meters. Use positive values for locations above the surface, negative values for locations below. If depth measures are given, the reference surface is the location given by the depth, otherwise the reference surface is the location given by the elevation.
490
+ # # @return [RDF::Vocabulary::Term]
491
+ # attr_reader :minimumDistanceAboveSurfaceInMeters
492
+ #
493
+ # # The lower limit of the range of elevation (altitude, usually above sea level), in meters.
494
+ # # @return [RDF::Vocabulary::Term]
495
+ # attr_reader :minimumElevationInMeters
496
+ #
497
+ # # The ordinal month in which the Event occurred.
498
+ # # @return [RDF::Vocabulary::Term]
499
+ # attr_reader :month
500
+ #
501
+ # # The full, unabbreviated name of the next smaller administrative region than county (city, municipality, etc.) in which the Location occurs. Do not use this term for a nearby named place that does not contain the actual location.
502
+ # # @return [RDF::Vocabulary::Term]
503
+ # attr_reader :municipality
504
+ #
505
+ # # The reference to the source in which the specific taxon concept circumscription is defined or implied - traditionally signified by the Latin "sensu" or "sec." (from secundum, meaning "according to"). For taxa that result from identifications, a reference to the keys, monographs, experts and other sources should be given.
506
+ # # @return [RDF::Vocabulary::Term]
507
+ # attr_reader :nameAccordingTo
508
+ #
509
+ # # An identifier for the source in which the specific taxon concept circumscription is defined or implied. See nameAccordingTo.
510
+ # # @return [RDF::Vocabulary::Term]
511
+ # attr_reader :nameAccordingToID
512
+ #
513
+ # # A reference for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode.
514
+ # # @return [RDF::Vocabulary::Term]
515
+ # attr_reader :namePublishedIn
516
+ #
517
+ # # An identifier for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode.
518
+ # # @return [RDF::Vocabulary::Term]
519
+ # attr_reader :namePublishedInID
520
+ #
521
+ # # The four-digit year in which the scientificName was published.
522
+ # # @return [RDF::Vocabulary::Term]
523
+ # attr_reader :namePublishedInYear
524
+ #
525
+ # # The nomenclatural code (or codes in the case of an ambiregnal name) under which the scientificName is constructed. Recommended best practice is to use a controlled vocabulary.
526
+ # # @return [RDF::Vocabulary::Term]
527
+ # attr_reader :nomenclaturalCode
528
+ #
529
+ # # The status related to the original publication of the name and its conformance to the relevant rules of nomenclature. It is based essentially on an algorithm according to the business rules of the code. It requires no taxonomic opinion.
530
+ # # @return [RDF::Vocabulary::Term]
531
+ # attr_reader :nomenclaturalStatus
532
+ #
533
+ # # An identifier for the Occurrence (as opposed to a particular digital record of the occurrence). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the occurrenceID globally unique.
534
+ # # @return [RDF::Vocabulary::Term]
535
+ # attr_reader :occurrenceID
536
+ #
537
+ # # Comments or notes about the Occurrence.
538
+ # # @return [RDF::Vocabulary::Term]
539
+ # attr_reader :occurrenceRemarks
540
+ #
541
+ # # A statement about the presence or absence of a Taxon at a Location. Recommended best practice is to use a controlled vocabulary.
542
+ # # @return [RDF::Vocabulary::Term]
543
+ # attr_reader :occurrenceStatus
544
+ #
545
+ # # The full scientific name of the order in which the taxon is classified.
546
+ # # @return [RDF::Vocabulary::Term]
547
+ # attr_reader :order
548
+ #
549
+ # # An identifier for the Organism instance (as opposed to a particular digital record of the Organism). May be a globally unique identifier or an identifier specific to the data set.
550
+ # # @return [RDF::Vocabulary::Term]
551
+ # attr_reader :organismID
552
+ #
553
+ # # A textual name or label assigned to an Organism instance.
554
+ # # @return [RDF::Vocabulary::Term]
555
+ # attr_reader :organismName
556
+ #
557
+ # # Comments or notes about the Organism instance.
558
+ # # @return [RDF::Vocabulary::Term]
559
+ # attr_reader :organismRemarks
560
+ #
561
+ # # A description of the kind of Organism instance. Can be used to indicate whether the Organism instance represents a discrete organism or if it represents a particular type of aggregation. Recommended best practice is to use a controlled vocabulary.
562
+ # # @return [RDF::Vocabulary::Term]
563
+ # attr_reader :organismScope
564
+ #
565
+ # # The taxon name, with authorship and date information if known, as it originally appeared when first established under the rules of the associated nomenclaturalCode. The basionym (botany) or basonym (bacteriology) of the scientificName or the senior/earlier homonym for replaced names.
566
+ # # @return [RDF::Vocabulary::Term]
567
+ # attr_reader :originalNameUsage
568
+ #
569
+ # # An identifier for the name usage (documented meaning of the name according to a source) in which the terminal element of the scientificName was originally established under the rules of the associated nomenclaturalCode.
570
+ # # @return [RDF::Vocabulary::Term]
571
+ # attr_reader :originalNameUsageID
572
+ #
573
+ # # A list (concatenated and separated) of previous or alternate fully qualified catalog numbers or other human-used identifiers for the same Occurrence, whether in the current or any other data set or collection.
574
+ # # @return [RDF::Vocabulary::Term]
575
+ # attr_reader :otherCatalogNumbers
576
+ #
577
+ # # The name (or acronym) in use by the institution having ownership of the object(s) or information referred to in the record.
578
+ # # @return [RDF::Vocabulary::Term]
579
+ # attr_reader :ownerInstitutionCode
580
+ #
581
+ # # The full name, with authorship and date information if known, of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName.
582
+ # # @return [RDF::Vocabulary::Term]
583
+ # attr_reader :parentNameUsage
584
+ #
585
+ # # An identifier for the name usage (documented meaning of the name according to a source) of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName.
586
+ # # @return [RDF::Vocabulary::Term]
587
+ # attr_reader :parentNameUsageID
588
+ #
589
+ # # The full scientific name of the phylum or division in which the taxon is classified.
590
+ # # @return [RDF::Vocabulary::Term]
591
+ # attr_reader :phylum
592
+ #
593
+ # # The ratio of the area of the point-radius (decimalLatitude, decimalLongitude, coordinateUncertaintyInMeters) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given point-radius does not completely contain the original representation. The pointRadiusSpatialFit is undefined (and should be left blank) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the pointRadiusSpatialFit is 1.
594
+ # # @return [RDF::Vocabulary::Term]
595
+ # attr_reader :pointRadiusSpatialFit
596
+ #
597
+ # # A list (concatenated and separated) of preparations and preservation methods for a specimen.
598
+ # # @return [RDF::Vocabulary::Term]
599
+ # attr_reader :preparations
600
+ #
601
+ # # A list (concatenated and separated) of previous assignments of names to the Organism.
602
+ # # @return [RDF::Vocabulary::Term]
603
+ # attr_reader :previousIdentifications
604
+ #
605
+ # # An identifier given to the Occurrence at the time it was recorded. Often serves as a link between field notes and an Occurrence record, such as a specimen collector's number.
606
+ # # @return [RDF::Vocabulary::Term]
607
+ # attr_reader :recordNumber
608
+ #
609
+ # # A list (concatenated and separated) of names of people, groups, or organizations responsible for recording the original Occurrence. The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first.
610
+ # # @return [RDF::Vocabulary::Term]
611
+ # attr_reader :recordedBy
612
+ #
613
+ # # An identifier for a related resource (the object, rather than the subject of the relationship).
614
+ # # @return [RDF::Vocabulary::Term]
615
+ # attr_reader :relatedResourceID
616
+ #
617
+ # # The source (person, organization, publication, reference) establishing the relationship between the two resources.
618
+ # # @return [RDF::Vocabulary::Term]
619
+ # attr_reader :relationshipAccordingTo
620
+ #
621
+ # # The date-time on which the relationship between the two resources was established. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).
622
+ # # @return [RDF::Vocabulary::Term]
623
+ # attr_reader :relationshipEstablishedDate
624
+ #
625
+ # # The relationship of the resource identified by relatedResourceID to the subject (optionally identified by the resourceID). Recommended best practice is to use a controlled vocabulary.
626
+ # # @return [RDF::Vocabulary::Term]
627
+ # attr_reader :relationshipOfResource
628
+ #
629
+ # # Comments or notes about the relationship between the two resources.
630
+ # # @return [RDF::Vocabulary::Term]
631
+ # attr_reader :relationshipRemarks
632
+ #
633
+ # # The reproductive condition of the biological individual(s) represented in the Occurrence. Recommended best practice is to use a controlled vocabulary.
634
+ # # @return [RDF::Vocabulary::Term]
635
+ # attr_reader :reproductiveCondition
636
+ #
637
+ # # An identifier for the resource that is the subject of the relationship.
638
+ # # @return [RDF::Vocabulary::Term]
639
+ # attr_reader :resourceID
640
+ #
641
+ # # An identifier for an instance of relationship between one resource (the subject) and another (relatedResource, the object).
642
+ # # @return [RDF::Vocabulary::Term]
643
+ # attr_reader :resourceRelationshipID
644
+ #
645
+ # # The amount of effort expended during an Event.
646
+ # # @return [RDF::Vocabulary::Term]
647
+ # attr_reader :samplingEffort
648
+ #
649
+ # # The name of, reference to, or description of the method or protocol used during an Event.
650
+ # # @return [RDF::Vocabulary::Term]
651
+ # attr_reader :samplingProtocol
652
+ #
653
+ # # The full scientific name, with authorship and date information if known. When forming part of an Identification, this should be the name in lowest level taxonomic rank that can be determined. This term should not contain identification qualifications, which should instead be supplied in the IdentificationQualifier term.
654
+ # # @return [RDF::Vocabulary::Term]
655
+ # attr_reader :scientificName
656
+ #
657
+ # # The authorship information for the scientificName formatted according to the conventions of the applicable nomenclaturalCode.
658
+ # # @return [RDF::Vocabulary::Term]
659
+ # attr_reader :scientificNameAuthorship
660
+ #
661
+ # # An identifier for the nomenclatural (not taxonomic) details of a scientific name.
662
+ # # @return [RDF::Vocabulary::Term]
663
+ # attr_reader :scientificNameID
664
+ #
665
+ # # The sex of the biological individual(s) represented in the Occurrence. Recommended best practice is to use a controlled vocabulary.
666
+ # # @return [RDF::Vocabulary::Term]
667
+ # attr_reader :sex
668
+ #
669
+ # # The name of the first or species epithet of the scientificName.
670
+ # # @return [RDF::Vocabulary::Term]
671
+ # attr_reader :specificEpithet
672
+ #
673
+ # # The earliest ordinal day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).
674
+ # # @return [RDF::Vocabulary::Term]
675
+ # attr_reader :startDayOfYear
676
+ #
677
+ # # The name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the Location occurs.
678
+ # # @return [RDF::Vocabulary::Term]
679
+ # attr_reader :stateProvince
680
+ #
681
+ # # The full scientific name of the subgenus in which the taxon is classified. Values should include the genus to avoid homonym confusion.
682
+ # # @return [RDF::Vocabulary::Term]
683
+ # attr_reader :subgenus
684
+ #
685
+ # # An identifier for the taxonomic concept to which the record refers - not for the nomenclatural details of a taxon.
686
+ # # @return [RDF::Vocabulary::Term]
687
+ # attr_reader :taxonConceptID
688
+ #
689
+ # # An identifier for the set of taxon information (data associated with the Taxon class). May be a global unique identifier or an identifier specific to the data set.
690
+ # # @return [RDF::Vocabulary::Term]
691
+ # attr_reader :taxonID
692
+ #
693
+ # # The taxonomic rank of the most specific name in the scientificName. Recommended best practice is to use a controlled vocabulary.
694
+ # # @return [RDF::Vocabulary::Term]
695
+ # attr_reader :taxonRank
696
+ #
697
+ # # Comments or notes about the taxon or name.
698
+ # # @return [RDF::Vocabulary::Term]
699
+ # attr_reader :taxonRemarks
700
+ #
701
+ # # The status of the use of the scientificName as a label for a taxon. Requires taxonomic opinion to define the scope of a taxon. Rules of priority then are used to define the taxonomic status of the nomenclature contained in that scope, combined with the experts opinion. It must be linked to a specific taxonomic reference that defines the concept. Recommended best practice is to use a controlled vocabulary.
702
+ # # @return [RDF::Vocabulary::Term]
703
+ # attr_reader :taxonomicStatus
704
+ #
705
+ # # A list (concatenated and separated) of nomenclatural types (type status, typified scientific name, publication) applied to the subject.
706
+ # # @return [RDF::Vocabulary::Term]
707
+ # attr_reader :typeStatus
708
+ #
709
+ # # The spatial coordinate system for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location. Recommended best practice is to use a controlled vocabulary.
710
+ # # @return [RDF::Vocabulary::Term]
711
+ # attr_reader :verbatimCoordinateSystem
712
+ #
713
+ # # The verbatim original spatial coordinates of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.
714
+ # # @return [RDF::Vocabulary::Term]
715
+ # attr_reader :verbatimCoordinates
716
+ #
717
+ # # The original description of the depth below the local surface.
718
+ # # @return [RDF::Vocabulary::Term]
719
+ # attr_reader :verbatimDepth
720
+ #
721
+ # # The original description of the elevation (altitude, usually above sea level) of the Location.
722
+ # # @return [RDF::Vocabulary::Term]
723
+ # attr_reader :verbatimElevation
724
+ #
725
+ # # The verbatim original representation of the date and time information for an Event.
726
+ # # @return [RDF::Vocabulary::Term]
727
+ # attr_reader :verbatimEventDate
728
+ #
729
+ # # The verbatim original latitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.
730
+ # # @return [RDF::Vocabulary::Term]
731
+ # attr_reader :verbatimLatitude
732
+ #
733
+ # # The original textual description of the place.
734
+ # # @return [RDF::Vocabulary::Term]
735
+ # attr_reader :verbatimLocality
736
+ #
737
+ # # The verbatim original longitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.
738
+ # # @return [RDF::Vocabulary::Term]
739
+ # attr_reader :verbatimLongitude
740
+ #
741
+ # # The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in verbatimLatitude and verbatimLongitude, or verbatimCoordinates are based. Recommended best practice is use the EPSG code as a controlled vocabulary to provide an SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value "unknown".
742
+ # # @return [RDF::Vocabulary::Term]
743
+ # attr_reader :verbatimSRS
744
+ #
745
+ # # The taxonomic rank of the most specific name in the scientificName as it appears in the original record.
746
+ # # @return [RDF::Vocabulary::Term]
747
+ # attr_reader :verbatimTaxonRank
748
+ #
749
+ # # A common or vernacular name.
750
+ # # @return [RDF::Vocabulary::Term]
751
+ # attr_reader :vernacularName
752
+ #
753
+ # # The name of the water body in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.
754
+ # # @return [RDF::Vocabulary::Term]
755
+ # attr_reader :waterBody
756
+ #
757
+ # # The four-digit year in which the Event occurred, according to the Common Era Calendar.
758
+ # # @return [RDF::Vocabulary::Term]
759
+ # attr_reader :year
760
+ #
9
761
  # end
10
- class DWC < RDF::Vocabulary("http://rs.tdwg.org/dwc/terms/")
762
+ DWC = Class.new(RDF::Vocabulary("http://rs.tdwg.org/dwc/terms/")) do
11
763
 
12
764
  # Ontology definition
13
765
  ontology :"http://rs.tdwg.org/dwc/terms/",