From e2455e9dbe4126d0a9ae09cc5fce6a501a48f181 Mon Sep 17 00:00:00 2001 From: Dorian Taylor Date: Mon, 15 Jun 2020 07:58:34 -0700 Subject: [PATCH 1/6] need this to sync with main rdf package --- lib/rdf/vocab/extensions.rb | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/lib/rdf/vocab/extensions.rb b/lib/rdf/vocab/extensions.rb index 6098f62..9d0d4c7 100644 --- a/lib/rdf/vocab/extensions.rb +++ b/lib/rdf/vocab/extensions.rb @@ -30,11 +30,14 @@ def each(&block) end ## - # A hash of all vocabularies by prefix showing relevant URI and associated vocabulary Class Name + # A hash of all vocabularies by prefix showing relevant URI and + # associated vocabulary Class Name + # # @return [Hash{Symbol => Hash{Symbol => String}}] #alias_method :_orig_vocab_map, :vocab_map def vocab_map - @vocab_map ||= RDF::VOCABS.merge(RDF::Vocab::VOCABS) + (@vocab_map ||= {}).merge RDF::VOCABS.transform_values(&:freeze), + RDF::Vocab::VOCABS.transform_values(&:freeze) end ## @@ -44,7 +47,8 @@ def vocab_map # @return [RDF::Vocabulary] alias_method :_orig_from_sym, :from_sym def from_sym(sym) - RDF::Vocab.const_defined?(sym.to_sym) ? RDF::Vocab.const_get(sym.to_sym) : _orig_from_sym(sym) + RDF::Vocab.const_defined?(sym.to_sym) ? + RDF::Vocab.const_get(sym.to_sym) : _orig_from_sym(sym) end ## From 9c17c8276dd4b9ba8f02edab31af57c43a68a952 Mon Sep 17 00:00:00 2001 From: Dorian Taylor Date: Mon, 15 Jun 2020 08:28:00 -0700 Subject: [PATCH 2/6] slight change to vocab_map behaviour --- lib/rdf/vocab/extensions.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/rdf/vocab/extensions.rb b/lib/rdf/vocab/extensions.rb index 9d0d4c7..182a06e 100644 --- a/lib/rdf/vocab/extensions.rb +++ b/lib/rdf/vocab/extensions.rb @@ -36,8 +36,8 @@ def each(&block) # @return [Hash{Symbol => Hash{Symbol => String}}] #alias_method :_orig_vocab_map, :vocab_map def vocab_map - (@vocab_map ||= {}).merge RDF::VOCABS.transform_values(&:freeze), - RDF::Vocab::VOCABS.transform_values(&:freeze) + @vocab_map ||= RDF::VOCABS.transform_values(&:freeze).merge( + RDF::Vocab::VOCABS.transform_values(&:freeze)) end ## From ebdabd34582e01b03877d6806b97e9b4cc742f9f Mon Sep 17 00:00:00 2001 From: Gregg Kellogg Date: Mon, 15 Jun 2020 16:58:49 -0700 Subject: [PATCH 3/6] Remove linkeddata gem from Gemspec, at least for now. --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 4e87788..d30a926 100644 --- a/Gemfile +++ b/Gemfile @@ -14,7 +14,7 @@ group :development, :test do gem 'ruby-prof' gem 'ebnf', git: 'https://github.com/dryruby/ebnf.git', branch: 'develop' gem 'json-ld', git: 'https://github.com/ruby-rdf/json-ld.git', branch: 'develop' - gem 'linkeddata', git: 'https://github.com/ruby-rdf/linkeddata.git', branch: 'develop' + #gem 'linkeddata', git: 'https://github.com/ruby-rdf/linkeddata.git', branch: 'develop' gem 'rdf-aggregate-repo', git: 'https://github.com/ruby-rdf/rdf-aggregate-repo.git', branch: 'develop' gem 'rdf-isomorphic', git: 'https://github.com/ruby-rdf/rdf-isomorphic.git', branch: 'develop' gem 'rdf-rdfa', git: 'https://github.com/ruby-rdf/rdf-rdfa.git', branch: 'develop' From 239ac4c859a08a0c69619f54a3b3e91ce72059b4 Mon Sep 17 00:00:00 2001 From: Gregg Kellogg Date: Fri, 10 Jul 2020 13:21:35 -0700 Subject: [PATCH 4/6] Adds og:image:alt, image:url, and locale:alternate which are missing in the "official" voabulary, now frozen. --- lib/rdf/vocab.rb | 49 ++++++++++++++++++++++++++++++++------------- lib/rdf/vocab/og.rb | 22 ++++++++++++++++++++ 2 files changed, 57 insertions(+), 14 deletions(-) diff --git a/lib/rdf/vocab.rb b/lib/rdf/vocab.rb index 79171a0..208a8de 100644 --- a/lib/rdf/vocab.rb +++ b/lib/rdf/vocab.rb @@ -215,19 +215,7 @@ module Vocab marcrelators: { uri: "http://id.loc.gov/vocabulary/relators/", source: "http://id.loc.gov/vocabulary/relators.rdf", - class_name: "MARCRelators", - patch: %{ - @prefix marcrelators: . - @prefix owl: . - @prefix rdfs: . - #DeleteExisting { - # marcrelators:lee rdfs:subPropertyOf marcrelators:lei . - #} . - #AddNew { - # marcrelators:role a owl:ObjectProperty; - # rdfs:comment "This property and its sub-properties are used to associate a Bibliographic Resource with a Resource that played a part in the lifecycle of the Bibliographic Resource. It is the inverse of relators:roleIn.". - #} . - } + class_name: "MARCRelators" }, mo: {uri: "http://purl.org/ontology/mo/", strict: false}, mods: { @@ -236,7 +224,40 @@ module Vocab }, nfo: {uri: 'http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#', skip: true}, oa: {uri: "http://www.w3.org/ns/oa#"}, - og: {uri: "http://ogp.me/ns#", source: 'http://ogp.me/ns/ogp.me.ttl', strict: false}, + og: { + uri: "http://ogp.me/ns#", + source: 'http://ogp.me/ns/ogp.me.ttl', + strict: false, + patch: %{ + @prefix og: . + @prefix ogc: . + @prefix owl: . + @prefix rdf: . + @prefix rdfs: . + # Used in http://ogp.me/ but not defined + AddNew { + og:image:url a rdf:Property ; + rdfs:label "image:url"@en-US ; + rdfs:comment "Identical to og:image."@en-US ; + rdfs:seeAlso og:image ; + rdfs:isDefinedBy og: ; + owl:sameProperty og:image ; + rdfs:range ogc:url . + og:image:alt a rdf:Property ; + rdfs:label "image:alt"@en-US ; + rdfs:comment "A description of what is in the image (not a caption). If the page specifies an og:image it should specify og:image:alt."@en-US ; + rdfs:seeAlso og:image ; + rdfs:isDefinedBy og: ; + rdfs:range ogc:url . + og:locale:alternate a rdf:Property ; + rdfs:label "locale:alternate"@en-US ; + rdfs:comment "An array of other locales this page is available in."@en-US ; + rdfs:seeAlso og:locale ; + rdfs:isDefinedBy og: ; + rdfs:range ogc:string . + } . + } + }, ogc: {uri: "http://ogp.me/ns/class#", source: "http://ogp.me/ns/ogp.me.ttl", strict: false}, ore: {uri: "http://www.openarchives.org/ore/terms/"}, org: {uri: "http://www.w3.org/ns/org#"}, diff --git a/lib/rdf/vocab/og.rb b/lib/rdf/vocab/og.rb index ae31ef0..2e34b71 100644 --- a/lib/rdf/vocab/og.rb +++ b/lib/rdf/vocab/og.rb @@ -158,6 +158,13 @@ module RDF::Vocab range: "ogc:url".freeze, "rdfs:seeAlso": "foaf:depiction".freeze, type: "rdf:Property".freeze + property :"image:alt", + comment: %(A description of what is in the image \(not a caption\). If the page specifies an og:image it should specify og:image:alt.).freeze, + isDefinedBy: "og:".freeze, + label: "image:alt".freeze, + range: "ogc:url".freeze, + "rdfs:seeAlso": "og:image".freeze, + type: "rdf:Property".freeze property :"image:height", comment: %(The height of an image.).freeze, isDefinedBy: "og:".freeze, @@ -177,6 +184,14 @@ module RDF::Vocab label: "image type".freeze, range: "ogc:mime_type_str".freeze, type: "rdf:Property".freeze + property :"image:url", + comment: %(Identical to og:image.).freeze, + isDefinedBy: "og:".freeze, + label: "image:url".freeze, + "owl:sameProperty": "og:image".freeze, + range: "ogc:url".freeze, + "rdfs:seeAlso": "og:image".freeze, + type: "rdf:Property".freeze property :"image:width", comment: %(The width of an image.).freeze, isDefinedBy: "og:".freeze, @@ -201,6 +216,13 @@ module RDF::Vocab label: "locale".freeze, range: "ogc:string".freeze, type: "rdf:Property".freeze + property :"locale:alternate", + comment: %(An array of other locales this page is available in.).freeze, + isDefinedBy: "og:".freeze, + label: "locale:alternate".freeze, + range: "ogc:string".freeze, + "rdfs:seeAlso": "og:locale".freeze, + type: "rdf:Property".freeze property :locality, comment: %([DEPRECATED] The locality of the resource e.g, "Palo Alto").freeze, isDefinedBy: "og:".freeze, From 50267ce6a9f10dc0c5cdefa44ffa1973e2481d64 Mon Sep 17 00:00:00 2001 From: Gregg Kellogg Date: Fri, 10 Jul 2020 13:43:10 -0700 Subject: [PATCH 5/6] Updates to several vocabularies. --- Gemfile | 1 + lib/rdf/vocab/bf2.rb | 156 +-- lib/rdf/vocab/cert.rb | 2 +- lib/rdf/vocab/dc.rb | 386 ++++++ lib/rdf/vocab/dcat.rb | 2 +- lib/rdf/vocab/dcmitype.rb | 50 + lib/rdf/vocab/earl.rb | 2 +- lib/rdf/vocab/ebucore.rb | 542 ++++----- lib/rdf/vocab/geonames.rb | 4 +- lib/rdf/vocab/gs1.rb | 4 +- lib/rdf/vocab/ht.rb | 2 +- lib/rdf/vocab/ical.rb | 122 +- lib/rdf/vocab/jsonld.rb | 16 +- lib/rdf/vocab/ldp.rb | 6 +- lib/rdf/vocab/lrmi.rb | 68 ++ lib/rdf/vocab/mads.rb | 18 +- lib/rdf/vocab/premis.rb | 412 +++---- lib/rdf/vocab/prov.rb | 26 +- lib/rdf/vocab/rsa.rb | 2 +- lib/rdf/vocab/rss.rb | 41 + lib/rdf/vocab/schema.rb | 2408 +++++++++++++++++++++++++------------ lib/rdf/vocab/sh.rb | 2 +- lib/rdf/vocab/skos.rb | 4 +- lib/rdf/vocab/xkos.rb | 8 +- 24 files changed, 2865 insertions(+), 1419 deletions(-) diff --git a/Gemfile b/Gemfile index d30a926..f44dd4b 100644 --- a/Gemfile +++ b/Gemfile @@ -18,6 +18,7 @@ group :development, :test do gem 'rdf-aggregate-repo', git: 'https://github.com/ruby-rdf/rdf-aggregate-repo.git', branch: 'develop' gem 'rdf-isomorphic', git: 'https://github.com/ruby-rdf/rdf-isomorphic.git', branch: 'develop' gem 'rdf-rdfa', git: 'https://github.com/ruby-rdf/rdf-rdfa.git', branch: 'develop' + gem 'rdf-rdfxml', git: 'https://github.com/ruby-rdf/rdf-rdfxml.git', branch: 'develop' gem 'rdf-reasoner', git: 'https://github.com/ruby-rdf/rdf-reasoner.git', branch: 'develop' gem 'rdf-spec', git: 'https://github.com/ruby-rdf/rdf-spec.git', branch: 'develop' gem 'rdf-turtle', git: 'https://github.com/ruby-rdf/rdf-turtle.git', branch: 'develop' diff --git a/lib/rdf/vocab/bf2.rb b/lib/rdf/vocab/bf2.rb index ca1eede..0ef7b80 100644 --- a/lib/rdf/vocab/bf2.rb +++ b/lib/rdf/vocab/bf2.rb @@ -567,27 +567,27 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :Work # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :absorbed # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :absorbedBy # - # # Expected value Work, Instance or Item - # # # # Used with Work, Instance or Item + # # + # # Expected value Work, Instance or Item # # @return [RDF::Vocabulary::Term] # attr_reader :accompaniedBy # - # # Expected value Work, Instance or Item - # # # # Used with Work, Instance or Item + # # + # # Expected value Work, Instance or Item # # @return [RDF::Vocabulary::Term] # attr_reader :accompanies # @@ -670,27 +670,27 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :contentAccessibility # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :continuedBy # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :continuedInPartBy # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :continues # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :continuesInPart # @@ -728,9 +728,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :custodialHistory # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :dataSource # @@ -741,9 +741,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :degree # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :derivativeOf # @@ -818,15 +818,15 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :extent # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :findingAid # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :findingAidOf # @@ -860,15 +860,15 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :grantingInstitution # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :hasDerivative # - # # Expected value Work, Instance or Item - # # # # Used with Work, Instance or Item + # # + # # Expected value Work, Instance or Item # # @return [RDF::Vocabulary::Term] # attr_reader :hasEquivalent # @@ -881,24 +881,24 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasItem # - # # Expected value Work, Instance or Item - # # # # Used with Work, Instance or Item + # # + # # Expected value Work, Instance or Item # # @return [RDF::Vocabulary::Term] # attr_reader :hasPart # # # @return [RDF::Vocabulary::Term] # attr_reader :hasReproduction # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :hasSeries # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :hasSubseries # @@ -925,15 +925,15 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :immediateAcquisition # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :index # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :indexOf # @@ -984,15 +984,15 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :media # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :mergedToForm # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :mergerOf # @@ -1042,21 +1042,21 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :originPlace # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :originalVersion # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :originalVersionOf # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :otherEdition # @@ -1076,9 +1076,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :partNumber # - # # Expected value Work, Instance or Item - # # # # Used with Work, Instance or Item + # # + # # Expected value Work, Instance or Item # # @return [RDF::Vocabulary::Term] # attr_reader :partOf # @@ -1095,9 +1095,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :polarity # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :precededBy # @@ -1127,30 +1127,30 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :reductionRatio # - # # Expected value Work, Instance or Item - # # # # Used with Work, Instance or Item + # # + # # Expected value Work, Instance or Item # # @return [RDF::Vocabulary::Term] # attr_reader :referencedBy # - # # Expected value Work, Instance or Item - # # # # Used with Work, Instance or Item + # # + # # Expected value Work, Instance or Item # # @return [RDF::Vocabulary::Term] # attr_reader :references # # # @return [RDF::Vocabulary::Term] # attr_reader :relatedTo # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :replacedBy # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :replacementOf # @@ -1174,18 +1174,18 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :schedulePart # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :separatedFrom # # # @return [RDF::Vocabulary::Term] # attr_reader :seriesEnumeration # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :seriesOf # @@ -1209,9 +1209,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :spanEnd # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :splitInto # @@ -1229,9 +1229,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :subseriesEnumeration # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :subseriesOf # @@ -1241,9 +1241,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :subtitle # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :succeededBy # @@ -1251,15 +1251,15 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :summary # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :supplement # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :supplementTo # @@ -1287,15 +1287,15 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :title # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :translation # - # # Used with Work or Instance - # # # # Expected value Work or Instance + # # + # # Used with Work or Instance # # @return [RDF::Vocabulary::Term] # attr_reader :translationOf # diff --git a/lib/rdf/vocab/cert.rb b/lib/rdf/vocab/cert.rb index 6bac5ed..ea458c8 100644 --- a/lib/rdf/vocab/cert.rb +++ b/lib/rdf/vocab/cert.rb @@ -10,8 +10,8 @@ module RDF::Vocab # # # # Ontology for Certificates and crypto stuff. This is in development. Some other ontologies to look at: * http://www.w3.org/2000/10/swap/crypto + has cwm builtins: http://www.w3.org/2000/10/swap/doc/Trust - a bit old perhaps. It imports daml+oil - would help to be more completely specified - uses literals as subjects a little liberally, which makes this a bit difficult to work with frameworks that don't permit this * http://xmlns.com/wot/0.1/ - limited very much to PGP (though on can map PGP to X509) - a little coarse grained, mixes up the PGP certificate with the PGP public key * Todo: - add some classes and relations for DSA - should this all be in one file? Or should this be cut up a little? Say one file for the general CERT ontology, and then files for RSA, DSA, PGP, etc... Or perhaps it does not really matter? - expand more on the certification side of things - verify this by security experts - owl2 has some constructs for combined inverse functional properties. This may be useful to use in defining an RSA key which is identified by two numbers. - also create html version of the spec by using this as a template. - should comments such as this be in html? # # @see http://lists.foaf-project.org/mailman/listinfo/foaf-protocols - # # @see http://www.w3.org/ns/auth/rsa # # @see http://www.w3.org/ns/auth/X509Uml.svg + # # @see http://www.w3.org/ns/auth/rsa # class CERT < RDF::StrictVocabulary # # A certificate is a Document that is signed. As explained here http://www.pgpi.org/doc/pgpintro/#p16 'A digital certificate consists of three things: * A public key. * Certificate information. ('Identity' information about the user, such as name, user ID, and so on.) * One or more digital signatures.' # # @return [RDF::Vocabulary::Term] diff --git a/lib/rdf/vocab/dc.rb b/lib/rdf/vocab/dc.rb index 30e4a03..f91ca29 100644 --- a/lib/rdf/vocab/dc.rb +++ b/lib/rdf/vocab/dc.rb @@ -5,7 +5,393 @@ module RDF::Vocab # @!parse # # Vocabulary for + # # + # # DCMI Metadata Terms - other # class DC < RDF::StrictVocabulary + # # A resource that acts or has the power to act. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Agent + # + # # A group of agents. + # # @return [RDF::Vocabulary::Term] + # attr_reader :AgentClass + # + # # A book, article, or other documentary resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :BibliographicResource + # + # # A digital resource format. + # # @return [RDF::Vocabulary::Term] + # attr_reader :FileFormat + # + # # A rate at which something recurs. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Frequency + # + # # The extent or range of judicial, law enforcement, or other authority. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Jurisdiction + # + # # A legal document giving official permission to do something with a resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :LicenseDocument + # + # # A system of signs, symbols, sounds, gestures, or rules used in communication. + # # @return [RDF::Vocabulary::Term] + # attr_reader :LinguisticSystem + # + # # A spatial region or named place. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Location + # + # # A location, period of time, or jurisdiction. + # # @return [RDF::Vocabulary::Term] + # attr_reader :LocationPeriodOrJurisdiction + # + # # A file format or physical medium. + # # @return [RDF::Vocabulary::Term] + # attr_reader :MediaType + # + # # A media type or extent. + # # @return [RDF::Vocabulary::Term] + # attr_reader :MediaTypeOrExtent + # + # # A method by which resources are added to a collection. + # # @return [RDF::Vocabulary::Term] + # attr_reader :MethodOfAccrual + # + # # A process that is used to engender knowledge, attitudes, and skills. + # # @return [RDF::Vocabulary::Term] + # attr_reader :MethodOfInstruction + # + # # An interval of time that is named or defined by its start and end dates. + # # @return [RDF::Vocabulary::Term] + # attr_reader :PeriodOfTime + # + # # A physical material or carrier. + # # @return [RDF::Vocabulary::Term] + # attr_reader :PhysicalMedium + # + # # A material thing. + # # @return [RDF::Vocabulary::Term] + # attr_reader :PhysicalResource + # + # # A plan or course of action by an authority, intended to influence and determine decisions, actions, and other matters. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Policy + # + # # Any changes in ownership and custody of a resource since its creation that are significant for its authenticity, integrity, and interpretation. + # # @return [RDF::Vocabulary::Term] + # attr_reader :ProvenanceStatement + # + # # A statement about the intellectual property rights (IPR) held in or over a resource, a legal document giving official permission to do something with a resource, or a statement about access rights. + # # @return [RDF::Vocabulary::Term] + # attr_reader :RightsStatement + # + # # A dimension or extent, or a time taken to play or execute. + # # @return [RDF::Vocabulary::Term] + # attr_reader :SizeOrDuration + # + # # A reference point against which other things can be evaluated or compared. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Standard + # + # # A summary of the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :abstract + # + # # Information about who access the resource or an indication of its security status. + # # @return [RDF::Vocabulary::Term] + # attr_reader :accessRights + # + # # The method by which items are added to a collection. + # # @return [RDF::Vocabulary::Term] + # attr_reader :accrualMethod + # + # # The frequency with which items are added to a collection. + # # @return [RDF::Vocabulary::Term] + # attr_reader :accrualPeriodicity + # + # # The policy governing the addition of items to a collection. + # # @return [RDF::Vocabulary::Term] + # attr_reader :accrualPolicy + # + # # An alternative name for the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :alternative + # + # # A class of agents for whom the resource is intended or useful. + # # @return [RDF::Vocabulary::Term] + # attr_reader :audience + # + # # Date that the resource became or will become available. + # # @return [RDF::Vocabulary::Term] + # attr_reader :available + # + # # A bibliographic reference for the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :bibliographicCitation + # + # # An established standard to which the described resource conforms. + # # @return [RDF::Vocabulary::Term] + # attr_reader :conformsTo + # + # # An entity responsible for making contributions to the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :contributor + # + # # The spatial or temporal topic of the resource, spatial applicability of the resource, or jurisdiction under which the resource is relevant. + # # @return [RDF::Vocabulary::Term] + # attr_reader :coverage + # + # # Date of creation of the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :created + # + # # An entity responsible for making the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :creator + # + # # A point or period of time associated with an event in the lifecycle of the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :date + # + # # Date of acceptance of the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :dateAccepted + # + # # Date of copyright of the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :dateCopyrighted + # + # # Date of submission of the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :dateSubmitted + # + # # An account of the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :description + # + # # A class of agents, defined in terms of progression through an educational or training context, for which the described resource is intended. + # # @return [RDF::Vocabulary::Term] + # attr_reader :educationLevel + # + # # The size or duration of the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :extent + # + # # The file format, physical medium, or dimensions of the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :format + # + # # A related resource that is substantially the same as the pre-existing described resource, but in another format. + # # @return [RDF::Vocabulary::Term] + # attr_reader :hasFormat + # + # # A related resource that is included either physically or logically in the described resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :hasPart + # + # # A related resource that is a version, edition, or adaptation of the described resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :hasVersion + # + # # An unambiguous reference to the resource within a given context. + # # @return [RDF::Vocabulary::Term] + # attr_reader :identifier + # + # # A process, used to engender knowledge, attitudes and skills, that the described resource is designed to support. + # # @return [RDF::Vocabulary::Term] + # attr_reader :instructionalMethod + # + # # A pre-existing related resource that is substantially the same as the described resource, but in another format. + # # @return [RDF::Vocabulary::Term] + # attr_reader :isFormatOf + # + # # A related resource in which the described resource is physically or logically included. + # # @return [RDF::Vocabulary::Term] + # attr_reader :isPartOf + # + # # A related resource that references, cites, or otherwise points to the described resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :isReferencedBy + # + # # A related resource that supplants, displaces, or supersedes the described resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :isReplacedBy + # + # # A related resource that requires the described resource to support its function, delivery, or coherence. + # # @return [RDF::Vocabulary::Term] + # attr_reader :isRequiredBy + # + # # A related resource of which the described resource is a version, edition, or adaptation. + # # @return [RDF::Vocabulary::Term] + # attr_reader :isVersionOf + # + # # Date of formal issuance of the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :issued + # + # # A language of the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :language + # + # # A legal document giving official permission to do something with the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :license + # + # # An entity that mediates access to the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :mediator + # + # # The material or physical carrier of the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :medium + # + # # Date on which the resource was changed. + # # @return [RDF::Vocabulary::Term] + # attr_reader :modified + # + # # A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation. + # # @return [RDF::Vocabulary::Term] + # attr_reader :provenance + # + # # An entity responsible for making the resource available. + # # @return [RDF::Vocabulary::Term] + # attr_reader :publisher + # + # # A related resource that is referenced, cited, or otherwise pointed to by the described resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :references + # + # # A related resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :relation + # + # # A related resource that is supplanted, displaced, or superseded by the described resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :replaces + # + # # A related resource that is required by the described resource to support its function, delivery, or coherence. + # # @return [RDF::Vocabulary::Term] + # attr_reader :requires + # + # # Information about rights held in and over the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :rights + # + # # A person or organization owning or managing rights over the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :rightsHolder + # + # # A related resource from which the described resource is derived. + # # @return [RDF::Vocabulary::Term] + # attr_reader :source + # + # # Spatial characteristics of the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :spatial + # + # # A topic of the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :subject + # + # # A list of subunits of the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :tableOfContents + # + # # Temporal characteristics of the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :temporal + # + # # A name given to the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :title + # + # # The nature or genre of the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :type + # + # # Date (often a range) of validity of a resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :valid + # + # # The set of regions in space defined by their geographic coordinates according to the DCMI Box Encoding Scheme. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Box + # + # # The set of codes listed in ISO 3166-1 for the representation of names of countries. + # # @return [RDF::Vocabulary::Term] + # attr_reader :ISO3166 + # + # # The set of time intervals defined by their limits according to the DCMI Period Encoding Scheme. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Period + # + # # The set of points in space defined by their geographic coordinates according to the DCMI Point Encoding Scheme. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Point + # + # # The set of tags, constructed according to RFC 1766, for the identification of languages. + # # @return [RDF::Vocabulary::Term] + # attr_reader :RFC1766 + # + # # The set of tags constructed according to RFC 3066 for the identification of languages. + # # @return [RDF::Vocabulary::Term] + # attr_reader :RFC3066 + # + # # The set of tags constructed according to RFC 4646 for the identification of languages. + # # @return [RDF::Vocabulary::Term] + # attr_reader :RFC4646 + # + # # The set of tags constructed according to RFC 5646 for the identification of languages. + # # @return [RDF::Vocabulary::Term] + # attr_reader :RFC5646 + # + # # The set of identifiers constructed according to the generic syntax for Uniform Resource Identifiers as specified by the Internet Engineering Task Force. + # # @return [RDF::Vocabulary::Term] + # attr_reader :URI + # + # # The set of dates and times constructed according to the W3C Date and Time Formats Specification. + # # @return [RDF::Vocabulary::Term] + # attr_reader :W3CDTF + # + # # The set of classes specified by the DCMI Type Vocabulary, used to categorize the nature or genre of the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :DCMIType + # + # # The set of conceptual resources specified by the Dewey Decimal Classification. + # # @return [RDF::Vocabulary::Term] + # attr_reader :DDC + # + # # The set of media types specified by the Internet Assigned Numbers Authority. + # # @return [RDF::Vocabulary::Term] + # attr_reader :IMT + # + # # The set of conceptual resources specified by the Library of Congress Classification. + # # @return [RDF::Vocabulary::Term] + # attr_reader :LCC + # + # # The set of labeled concepts specified by the Library of Congress Subject Headings. + # # @return [RDF::Vocabulary::Term] + # attr_reader :LCSH + # + # # The set of labeled concepts specified by the Medical Subject Headings. + # # @return [RDF::Vocabulary::Term] + # attr_reader :MESH + # + # # The set of conceptual resources specified by the National Library of Medicine Classification. + # # @return [RDF::Vocabulary::Term] + # attr_reader :NLM + # + # # The set of places specified by the Getty Thesaurus of Geographic Names. + # # @return [RDF::Vocabulary::Term] + # attr_reader :TGN + # + # # The set of conceptual resources specified by the Universal Decimal Classification. + # # @return [RDF::Vocabulary::Term] + # attr_reader :UDC + # # end DC = Class.new(RDF::StrictVocabulary("http://purl.org/dc/terms/")) do diff --git a/lib/rdf/vocab/dcat.rb b/lib/rdf/vocab/dcat.rb index 6c14b70..c76be3f 100644 --- a/lib/rdf/vocab/dcat.rb +++ b/lib/rdf/vocab/dcat.rb @@ -189,7 +189,7 @@ module RDF::Vocab "foaf:name": "Jakub Klímek".freeze, "rdfs:seeAlso": "https://jakub.klímek.com/#me".freeze ), term( - "foaf:homepage": ["http://www.imati.cnr.it/index.php/people/8-curricula/178-riccardo-albertoni".freeze,"https://w3id.org/people/ralbertoni/".freeze], + "foaf:homepage": ["https://w3id.org/people/ralbertoni/".freeze,"http://www.imati.cnr.it/index.php/people/8-curricula/178-riccardo-albertoni".freeze], "foaf:name": "Riccardo Albertoni".freeze, "rdfs:seeAlso": "https://orcid.org/0000-0001-5648-2713".freeze ), term( diff --git a/lib/rdf/vocab/dcmitype.rb b/lib/rdf/vocab/dcmitype.rb index f77458e..cf18ece 100644 --- a/lib/rdf/vocab/dcmitype.rb +++ b/lib/rdf/vocab/dcmitype.rb @@ -5,7 +5,57 @@ module RDF::Vocab # @!parse # # Vocabulary for + # # + # # DCMI Type Vocabulary # class DCMIType < RDF::StrictVocabulary + # # An aggregation of resources. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Collection + # + # # Data encoded in a defined structure. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Dataset + # + # # A non-persistent, time-based occurrence. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Event + # + # # A visual representation other than text. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Image + # + # # A resource requiring interaction from the user to be understood, executed, or experienced. + # # @return [RDF::Vocabulary::Term] + # attr_reader :InteractiveResource + # + # # A series of visual representations imparting an impression of motion when shown in succession. + # # @return [RDF::Vocabulary::Term] + # attr_reader :MovingImage + # + # # An inanimate, three-dimensional object or substance. + # # @return [RDF::Vocabulary::Term] + # attr_reader :PhysicalObject + # + # # A system that provides one or more functions. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Service + # + # # A computer program in source or compiled form. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Software + # + # # A resource primarily intended to be heard. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Sound + # + # # A static visual representation. + # # @return [RDF::Vocabulary::Term] + # attr_reader :StillImage + # + # # A resource consisting primarily of words for reading. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Text + # # end DCMIType = Class.new(RDF::StrictVocabulary("http://purl.org/dc/dcmitype/")) do diff --git a/lib/rdf/vocab/earl.rb b/lib/rdf/vocab/earl.rb index c4eb0ec..12d3939 100644 --- a/lib/rdf/vocab/earl.rb +++ b/lib/rdf/vocab/earl.rb @@ -10,8 +10,8 @@ module RDF::Vocab # # # # Formal schema of the Evaluation and Report Language (EARL) 1.0 # # @see http://www.w3.org/TR/Pointers-in-RDF/ - # # @see http://www.w3.org/WAI/intro/earl # # @see http://www.w3.org/TR/HTTP-in-RDF/ + # # @see http://www.w3.org/WAI/intro/earl # # @see http://www.w3.org/TR/Content-in-RDF/ # class EARL < RDF::StrictVocabulary # # a statement that embodies the results of a test diff --git a/lib/rdf/vocab/ebucore.rb b/lib/rdf/vocab/ebucore.rb index 820ef1b..52eb284 100644 --- a/lib/rdf/vocab/ebucore.rb +++ b/lib/rdf/vocab/ebucore.rb @@ -8,45 +8,45 @@ module RDF::Vocab # # # # EBUCore - the Dublin Core for media # # - # # Guidelines: for the purpose of flexibility and interoperability with a wider range of implementations, some properties purposefully do not have a range and accept either a resource or a literal. When a resource is used, it is recommended to reuse objects defined in the model (e.g. pair hasEvent/Event or hasRole/Role). Example 1: x hasRole 'actor'. Example 2: x hasRole _:Role_1 (a reference to the Concept identifier from a SKOS Role vocabulary defined in the ontology). - # # - # # Note to implementers: The EBUCore ontology is used by a variety of users with different needs. Several EBUCore properties have no range to allow different implementations using entities or literals. As an implementer, it is your choice to go for one or the other for each property to have consistent expectations when parsing individuals. EBUCore also provides different classes defined as subclasses of skos:Concept. You can use these classes as entities in range of several properties currently left without range. EBUCore is expressed in RDF in order to facilitate such modelling and flexibility. As a consequence, propoerties appear in the documentation as annotation properties. - # # # # The EBUCore has been designed to make users benefit from the flexibility of RDF to adapt the names of Classes and properties to their respective needs. This means users are welcome to add their own subclasses (e.g. to define the most appropriate BusinessObjects or Resources or Agents) and subproperties. # # + # # Guidelines: for the purpose of flexibility and interoperability with a wider range of implementations, some properties purposefully do not have a range and accept either a resource or a literal. When a resource is used, it is recommended to reuse objects defined in the model (e.g. pair hasEvent/Event or hasRole/Role). Example 1: x hasRole 'actor'. Example 2: x hasRole _:Role_1 (a reference to the Concept identifier from a SKOS Role vocabulary defined in the ontology). + # # # # The development of the EBUCore ontology is a joint effort of the EBUCore and PBCore communities. - # # @version Add roleId to identify a Role. - # # @version Correct property actionType into hasActionType of rnage string or ActionType subclass of Concept. - # # @version Add lead as subproperty of description. + # # + # # Note to implementers: The EBUCore ontology is used by a variety of users with different needs. Several EBUCore properties have no range to allow different implementations using entities or literals. As an implementer, it is your choice to go for one or the other for each property to have consistent expectations when parsing individuals. EBUCore also provides different classes defined as subclasses of skos:Concept. You can use these classes as entities in range of several properties currently left without range. EBUCore is expressed in RDF in order to facilitate such modelling and flexibility. As a consequence, propoerties appear in the documentation as annotation properties. + # # @version Changed subclasses to dc: with owl:equivalentClass or owl:equivalentProperty. # # @version Add Concept Theme and define property hasTheme as subproperty of hasSubject. # # @version Change identifier into hasIdentifier. - # # @version Delete roleDefinition and use skos:definition instead as Role is a subclass of Concept. - # # @version Add missing Concepts and propose default types. + # # @version Correct target of end and start as MediaResource. + # # @version Add roleType to define a type of Role. # # @version Add productionSynopsis as subproperty of description. + # # @version Version 1.10 + # # @version Add missing multiple range definitions. # # @version Harmonise multi-range definition of properties, when applicable. - # # @version Changed subclasses to dc: with owl:equivalentClass or owl:equivalentProperty. - # # @version Alignment of Concepts and Types with original EBU and new Dwerft SKOS vocabularies - # # @version Correct target of end and start as MediaResource. + # # @version Add property dateProduced and property hasProducer. # # @version Add ContentEditorialFormat as subclass of Type + hasContentEditorialFormat property as subpropertyof hastype. - # # @version Correct misstyped owl:Classes into rdfs:Classes. - # # @version Version 1.10 + # # @version Delete hasAssociatedRights has already covered by isCoveredBy. + # # @version Create property Asset / hasCopyright with range string or Copyright. Same correction for all Rights subclasses e.g. AccessConditions # # @version Add hasRelationType with domain Relation. + # # @version Correct property actionType into hasActionType of rnage string or ActionType subclass of Concept. + # # @version Correct misstyped owl:Classes into rdfs:Classes. + # # @version Add hasRatingProvider equivalent to hasRatingSource in specific environments # # @version Separate mutli-domains and multi-ranges to avoid owl:unionOf statements. - # # @version Add roleType to define a type of Role. - # # @version Add Concept TargetPlatform and property hasTargetPlatform as a subproperty of Type. - # # @version Change hierarchy between Resource and MediaResource and provide hasRelatedResource and hasRelatedMediaResource and similar properties. - # # @version Delete formatName and use skos:prefLabel and skos:definition. - # # @version Delete hasAssociatedRights has already covered by isCoveredBy. - # # @version Add missing multiple range definitions. + # # @version Delete roleDefinition and use skos:definition instead as Role is a subclass of Concept. + # # @version Alignment of Concepts and Types with original EBU and new Dwerft SKOS vocabularies # # @version Add formatId to Format. - # # @version Add reverse property isTimelineTrackPartOf. - # # @version Create property Asset / hasCopyright with range string or Copyright. Same correction for all Rights subclasses e.g. AccessConditions # # @version Had Review and hasReview. - # # @version Add property dateProduced and property hasProducer. # # @version Add isScheduledOn to associate a PublicationEvent directly with an EditorialObject. - # # @version Add abstract as subpropertyOf description. + # # @version Delete formatName and use skos:prefLabel and skos:definition. + # # @version Add roleId to identify a Role. + # # @version Add Concept TargetPlatform and property hasTargetPlatform as a subproperty of Type. # # @version Move generic properties from BusinessObject/EditorialObject, Resource and MediaResource at Asset level (e.g. title, etc.). - # # @version Add hasRatingProvider equivalent to hasRatingSource in specific environments + # # @version Change hierarchy between Resource and MediaResource and provide hasRelatedResource and hasRelatedMediaResource and similar properties. + # # @version Add reverse property isTimelineTrackPartOf. + # # @version Add abstract as subpropertyOf description. + # # @version Add lead as subproperty of description. + # # @version Add missing Concepts and propose default types. # class EBUCore < RDF::StrictVocabulary # # The conditions under which content can be accessed. # # @return [RDF::Vocabulary::Term] @@ -418,9 +418,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :Essence # - # # An event related to the media resource, e.g. depicted in the resource (possibly fictional), etc. - # # # # Additional types of event shall be defined as new sub-classes of event. + # # + # # An event related to the media resource, e.g. depicted in the resource (possibly fictional), etc. # # @return [RDF::Vocabulary::Term] # attr_reader :Event # @@ -548,11 +548,11 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :Link # - # # A type of location is defined as a sub-class of location. + # # A location related to the media resource, e.g. depicted in the resource (possibly fictional) or where the resource was created (shooting location), etc. # # # # This is provided as free text in an annotation label or as an identifier pointing to a term in a classification scheme. # # - # # A location related to the media resource, e.g. depicted in the resource (possibly fictional) or where the resource was created (shooting location), etc. + # # A type of location is defined as a sub-class of location. # # @return [RDF::Vocabulary::Term] # attr_reader :Location # @@ -714,9 +714,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :RadioProgramme # - # # This is provided as free text in an annotation label or as an identifier pointing to a term in a classification scheme. - # # # # All the information about the rating/evaluation given to a media resource by an Agent i.e. a person/Contact or Organisation. + # # + # # This is provided as free text in an annotation label or as an identifier pointing to a term in a classification scheme. # # @return [RDF::Vocabulary::Term] # attr_reader :Rating # @@ -984,9 +984,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :actionDescription # - # # An identifier attributed to an Action. - # # # # Range: anyURI or string or Identifier + # # + # # An identifier attributed to an Action. # # @return [RDF::Vocabulary::Term] # attr_reader :actionId # @@ -1014,9 +1014,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :actionTimestampTimecodeDropFrame # - # # A type of Action. - # # # # Range: Action_type or string + # # + # # A type of Action. # # @return [RDF::Vocabulary::Term] # attr_reader :actionType # @@ -1127,9 +1127,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :agentTwitter # - # # To define a type of Agent. - # # # # Range: string or anyURI or Concept. + # # + # # To define a type of Agent. # # @return [RDF::Vocabulary::Term] # attr_reader :agentType # @@ -1204,15 +1204,15 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :annotationSaliency # - # # To define a type of Annotation. - # # # # Range: string, anyURI or Concept. + # # + # # To define a type of Annotation. # # @return [RDF::Vocabulary::Term] # attr_reader :annotationType # - # # Range: string or CountryCode. - # # # # To define the Location (e.g. country, region) to which Rating and TargetAudience do NOT apply. + # # + # # Range: string or CountryCode. # # @return [RDF::Vocabulary::Term] # attr_reader :appliesOutOf # @@ -1224,9 +1224,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :applyTo # - # # Range: Agent or string - # # # # To identify the Agent who approved the EditorialObject. + # # + # # Range: Agent or string # # @return [RDF::Vocabulary::Term] # attr_reader :approvedBy # @@ -1304,9 +1304,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :artefactStyle # - # # To specify the type of an Artefact. - # # # # Range: string or Artefact_type. + # # + # # To specify the type of an Artefact. # # @return [RDF::Vocabulary::Term] # attr_reader :artefactType # @@ -1336,9 +1336,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :assetName # - # # To define a type of an Asset. - # # # # Range: string or anyURI or Concept. + # # + # # To define a type of an Asset. # # @return [RDF::Vocabulary::Term] # attr_reader :assetType # @@ -1396,9 +1396,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :awardName # - # # Range: string or Award_Type - # # # # To define a type of Award. + # # + # # Range: string or Award_Type # # @return [RDF::Vocabulary::Term] # attr_reader :awardType # @@ -1618,9 +1618,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :displayOrder # - # # Range: string or Language. - # # # # the Language into which MediaResource is dubbed. + # # + # # Range: string or Language. # # @return [RDF::Vocabulary::Term] # attr_reader :dubbedTo # @@ -1660,9 +1660,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :editorialObjectDescription # - # # Range: an Identifier or anyURI or string. - # # # # An identifier attributed to an EditorialObject. + # # + # # Range: an Identifier or anyURI or string. # # @return [RDF::Vocabulary::Term] # attr_reader :editorialObjectId # @@ -1714,9 +1714,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :emotionTimestamp # - # # A type of Emotion. - # # # # Range: anyURI or string or Emotion_Type + # # + # # A type of Emotion. # # @return [RDF::Vocabulary::Term] # attr_reader :emotionType # @@ -1822,9 +1822,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :eventStartTime # - # # Range: Event or string - # # # # To define a type of Event. + # # + # # Range: Event or string # # @return [RDF::Vocabulary::Term] # attr_reader :eventType # @@ -1864,15 +1864,15 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :foodIngredient # - # # Range: string or anyURI or Identifier. - # # # # A version identifier attributed to a Format. + # # + # # Range: string or anyURI or Identifier. # # @return [RDF::Vocabulary::Term] # attr_reader :formatId # - # # Range: string or anyURI or identifier. - # # # # A version identifier attributed to a Format. + # # + # # Range: string or anyURI or identifier. # # @return [RDF::Vocabulary::Term] # attr_reader :formatVersionId # @@ -1936,9 +1936,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :groupType # - # # Range: string or AccessConditions. - # # # # To express access conditions/restrictions. + # # + # # Range: string or AccessConditions. # # @return [RDF::Vocabulary::Term] # attr_reader :hasAccessConditions # @@ -1960,27 +1960,27 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasAffiliation # - # # To provide a biography of an Agent. - # # # # Range: a string or an anyURI (e,g, a URL to a webpage) or a Biography. + # # + # # To provide a biography of an Agent. # # @return [RDF::Vocabulary::Term] # attr_reader :hasAgentBiography # - # # Range: string or CountryCode - # # # # To indicate the place of residence of an Agent. + # # + # # Range: string or CountryCode # # @return [RDF::Vocabulary::Term] # attr_reader :hasAgentCountryOfResidence # - # # Range: a string or Language. - # # # # To provide the language(s) of a Contact/person. + # # + # # Range: a string or Language. # # @return [RDF::Vocabulary::Term] # attr_reader :hasAgentLanguage # - # # Range: string or Agent. - # # # # To associate an Agent to another Agent e.g. a Team. + # # + # # Range: string or Agent. # # @return [RDF::Vocabulary::Term] # attr_reader :hasAgentMember # @@ -1990,9 +1990,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasAgentNationality # - # # Range: string or Location - # # # # To indicate the place of residence of an Agent. + # # + # # Range: string or Location # # @return [RDF::Vocabulary::Term] # attr_reader :hasAgentPlaceOfResidence # @@ -2055,9 +2055,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasArtefactBuyer # - # # Range: string or Agent - # # # # To identify the creator of an Artefact. + # # + # # Range: string or Agent # # @return [RDF::Vocabulary::Term] # attr_reader :hasArtefactCreator # @@ -2067,15 +2067,15 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasArtefactLocation # - # # To identify the owner of an Artefact. - # # # # Range: string or Agent + # # + # # To identify the owner of an Artefact. # # @return [RDF::Vocabulary::Term] # attr_reader :hasArtefactOwner # - # # To specify the currency into which the price of an Artefact is expressed. - # # # # Range: string or CurrencyCode + # # + # # To specify the currency into which the price of an Artefact is expressed. # # @return [RDF::Vocabulary::Term] # attr_reader :hasArtefactPriceCurrency # @@ -2091,9 +2091,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasArtefactRelatedEditorialObject # - # # Range: string or Location - # # # # To associate an Artefact/Prop or else with a Location. + # # + # # Range: string or Location # # @return [RDF::Vocabulary::Term] # attr_reader :hasArtefactRelatedLocation # @@ -2148,9 +2148,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasAssociatedRelation # - # # Range: string or AudienceScorerecordingTechnique. - # # # # To identify the technique used to measure an audience. + # # + # # Range: string or AudienceScorerecordingTechnique. # # @return [RDF::Vocabulary::Term] # attr_reader :hasAudienceScoreRecordingTechnique # @@ -2170,9 +2170,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasAudioDescription # - # # Range: string or AudioEncodingFormat - # # # # To specify the audio encoding format. + # # + # # Range: string or AudioEncodingFormat # # @return [RDF::Vocabulary::Term] # attr_reader :hasAudioEncodingFormat # @@ -2186,9 +2186,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasAudioTrack # - # # To link an Agent to an Award. - # # # # Range: string or Agent. + # # + # # To link an Agent to an Award. # # @return [RDF::Vocabulary::Term] # attr_reader :hasAwardRelatedAgent # @@ -2200,9 +2200,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasAwardRelatedEvent # - # # Range: a string or an Award. - # # # # The Award gievn to an Agent + # # + # # Range: a string or an Award. # # @return [RDF::Vocabulary::Term] # attr_reader :hasBeenAwarded # @@ -2216,21 +2216,21 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasCaptioningFormat # - # # Range: string or Agent - # # # # To provide information on the source of Captioning. + # # + # # Range: string or Agent # # @return [RDF::Vocabulary::Term] # attr_reader :hasCaptioningSource # - # # A member of the cast. - # # # # Range: a string or a Cast + # # + # # A member of the cast. # # @return [RDF::Vocabulary::Term] # attr_reader :hasCastMember # - # # Range: a string or a Role/Concept from a controlled vocabulary. - # # # # To define the role of an Agent (Contact/person or Organisation). The association in a particular context is made by e.g. declaring the hasCastRole or hasCrewRole associated with the BusinessObject. + # # + # # Range: a string or a Role/Concept from a controlled vocabulary. # # @return [RDF::Vocabulary::Term] # attr_reader :hasCastRole # @@ -2254,9 +2254,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasCodec # - # # To provide a name for the vendor of the Codec. - # # # # Range: string or Agent. + # # + # # To provide a name for the vendor of the Codec. # # @return [RDF::Vocabulary::Term] # attr_reader :hasCodecVendor # @@ -2266,9 +2266,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasColourSpace # - # # Range: a link to a Contact or a string. - # # # # To provide information on a Contact for an Organisation or a physical person (e.g. the agent of an actor). + # # + # # Range: a link to a Contact or a string. # # @return [RDF::Vocabulary::Term] # attr_reader :hasContact # @@ -2284,33 +2284,33 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasContainerEncodingFormat # - # # Range: string or MimeType - # # # # To provide the Mime type of the Resource. + # # + # # Range: string or MimeType # # @return [RDF::Vocabulary::Term] # attr_reader :hasContainerMimeType # - # # To define a content editorial format e.g. magazine. - # # # # Range: string or ContentEditorialFormat. + # # + # # To define a content editorial format e.g. magazine. # # @return [RDF::Vocabulary::Term] # attr_reader :hasContentEditorialFormat # - # # To identify a contributor to a Resource, a Business Object, an Event... - # # # # Range: string or Agent + # # + # # To identify a contributor to a Resource, a Business Object, an Event... # # @return [RDF::Vocabulary::Term] # attr_reader :hasContributor # - # # To express copyright. - # # # # Range: string or Copyright. + # # + # # To express copyright. # # @return [RDF::Vocabulary::Term] # attr_reader :hasCopyright # - # # To define a type of Costume. - # # # # Range: a string or Costume_type e.g. a Concept code from a vocabulary, e.g. Getty. + # # + # # To define a type of Costume. # # @return [RDF::Vocabulary::Term] # attr_reader :hasCostumeType # @@ -2326,9 +2326,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasCountryOfDeath # - # # To provide coverage information. - # # # # Range: string or Event or Location + # # + # # To provide coverage information. # # @return [RDF::Vocabulary::Term] # attr_reader :hasCoverage # @@ -2350,9 +2350,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasCreativeCommons # - # # To identify an Agent involved in the creation of the Resource or BusinessObject. - # # # # Range: string or Agent. + # # + # # To identify an Agent involved in the creation of the Resource or BusinessObject. # # @return [RDF::Vocabulary::Term] # attr_reader :hasCreator # @@ -2362,15 +2362,15 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasCrewMember # - # # Range: a string or a Role/Concept from a controlled vocabulary. - # # # # To define the role of an Agent (Contact/person or Organisation). The association in a particular context is made by e.g. declaring the hasCastRole or hasCrewRole associated with the BusinessObject. + # # + # # Range: a string or a Role/Concept from a controlled vocabulary. # # @return [RDF::Vocabulary::Term] # attr_reader :hasCrewRole # - # # The country/region of origin of the cuisine - # # # # Range: a string or CountryCode + # # + # # The country/region of origin of the cuisine # # @return [RDF::Vocabulary::Term] # attr_reader :hasCuisineOrigin # @@ -2390,9 +2390,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasDataTrack # - # # Range: string or Department. - # # # # To identify a department in an organisation. + # # + # # Range: string or Department. # # @return [RDF::Vocabulary::Term] # attr_reader :hasDepartment # @@ -2426,9 +2426,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasEidrIdentifier # - # # Range: String or Agent - # # # # To associate an Emotion with an Agent (e.g. Person or Character). + # # + # # Range: String or Agent # # @return [RDF::Vocabulary::Term] # attr_reader :hasEmotionRelatedAgent # @@ -2456,9 +2456,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasEventRelatedAgent # - # # An artefact related to an Event. - # # # # Range: string or Artefact. + # # + # # An artefact related to an Event. # # @return [RDF::Vocabulary::Term] # attr_reader :hasEventRelatedArtefact # @@ -2482,9 +2482,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasEventRelatedResource # - # # Range: string or EventType - # # # # To define a type of Event. + # # + # # Range: string or EventType # # @return [RDF::Vocabulary::Term] # attr_reader :hasEventType # @@ -2494,9 +2494,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasExploitationIssues # - # # The format of a file. - # # # # Range: string or FileFormat. + # # + # # The format of a file. # # @return [RDF::Vocabulary::Term] # attr_reader :hasFileFormat # @@ -2506,15 +2506,15 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasFoodStyle # - # # Range: string, Format or any Format-related Concept - # # # # To identify a Format + # # + # # Range: string, Format or any Format-related Concept # # @return [RDF::Vocabulary::Term] # attr_reader :hasFormat # - # # Range: Identifier or string or anyURI. - # # # # An identifier attributed to a Format. + # # + # # Range: Identifier or string or anyURI. # # @return [RDF::Vocabulary::Term] # attr_reader :hasFormatId # @@ -2534,15 +2534,15 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasIMediaIdentifier # - # # Range: string or IPR Restrictions. - # # # # To express IPR Restrictions. + # # + # # Range: string or IPR Restrictions. # # @return [RDF::Vocabulary::Term] # attr_reader :hasIPRRestrictions # - # # To provide a link to an identification picture. - # # # # A locator / URI or a Picture. + # # + # # To provide a link to an identification picture. # # @return [RDF::Vocabulary::Term] # attr_reader :hasIdPicture # @@ -2552,21 +2552,21 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasIdentifier # - # # To define a type of Identifer (e.g. UUID, ISAN, EIDR, in-house production Id). - # # # # Range: Concept or string + # # + # # To define a type of Identifer (e.g. UUID, ISAN, EIDR, in-house production Id). # # @return [RDF::Vocabulary::Term] # attr_reader :hasIdentifierType # - # # Range: string or Codec - # # # # To specify the codec of an Image. + # # + # # Range: string or Codec # # @return [RDF::Vocabulary::Term] # attr_reader :hasImageCodec # - # # Range: string or ImageFormat - # # # # To specify the format of an Image. + # # + # # Range: string or ImageFormat # # @return [RDF::Vocabulary::Term] # attr_reader :hasImageFormat # @@ -2576,9 +2576,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasIsanIdentifier # - # # Range: string or KeyCareerEvent - # # # # To identify the key career events of a Person. + # # + # # Range: string or KeyCareerEvent # # @return [RDF::Vocabulary::Term] # attr_reader :hasKeyCareerEvent # @@ -2588,9 +2588,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasKeyPersonalEvent # - # # To associate a concept, descriptive phrase or Keyword that specifies the topic of the EditorialObject. - # # # # Range: Keyword or string or any URI from a controlled vocabulary + # # + # # To associate a concept, descriptive phrase or Keyword that specifies the topic of the EditorialObject. # # @return [RDF::Vocabulary::Term] # attr_reader :hasKeyword # @@ -2606,9 +2606,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasLicensing # - # # Range: string or LocationCode. - # # # # To give the code of a Location. + # # + # # Range: string or LocationCode. # # @return [RDF::Vocabulary::Term] # attr_reader :hasLocationCode # @@ -2616,9 +2616,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasLocationPicture # - # # To associate an Artefact with a Location. - # # # # Range: a string or an Artefact. + # # + # # To associate an Artefact with a Location. # # @return [RDF::Vocabulary::Term] # attr_reader :hasLocationRelatedArtefact # @@ -2638,9 +2638,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasLocationType # - # # Range: a locator e.g. a URI or a Locator or a string. - # # # # A locator from where the MediaResource can be accessed. + # # + # # Range: a locator e.g. a URI or a Locator or a string. # # @return [RDF::Vocabulary::Term] # attr_reader :hasLocator # @@ -2678,9 +2678,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasMetadataTrack # - # # Range: string or MimeType - # # # # To specify the Mime type of a Resource. + # # + # # Range: string or MimeType # # @return [RDF::Vocabulary::Term] # attr_reader :hasMimeType # @@ -2718,9 +2718,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasPart # - # # A type of Part. - # # # # Range: a string or Part_Type + # # + # # A type of Part. # # @return [RDF::Vocabulary::Term] # attr_reader :hasPartType # @@ -2730,9 +2730,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasParticipatingAgent # - # # Range: a locator/URI or a Picture. - # # # # To provide a visual representation of a Rating / AufdienceRating / AudienceLevel. + # # + # # Range: a locator/URI or a Picture. # # @return [RDF::Vocabulary::Term] # attr_reader :hasPictogram # @@ -2750,15 +2750,15 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasProducer # - # # To identify the Location of a production - # # # # Range: a Location or string + # # + # # To identify the Location of a production # # @return [RDF::Vocabulary::Term] # attr_reader :hasProductionLocation # - # # Range: string, anyURI or Concept. - # # # # To associate information on Provenance to an EBUCore class. + # # + # # Range: string, anyURI or Concept. # # @return [RDF::Vocabulary::Term] # attr_reader :hasProvenance # @@ -2774,9 +2774,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasPublicationHistory # - # # To identify the publication medium. - # # # # Range: string or PublicationMedium. + # # + # # To identify the publication medium. # # @return [RDF::Vocabulary::Term] # attr_reader :hasPublicationMedium # @@ -2784,9 +2784,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasPublicationPlanMember # - # # Range: string or PublicationPlan_type. - # # # # To define a type of PublicationPlan. + # # + # # Range: string or PublicationPlan_type. # # @return [RDF::Vocabulary::Term] # attr_reader :hasPublicationPlanType # @@ -2800,21 +2800,21 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasPublisher # - # # Range: a string or a Rating. - # # # # To identify the presence of Rating attributed to a Resource or BusinessObject. + # # + # # Range: a string or a Rating. # # @return [RDF::Vocabulary::Term] # attr_reader :hasRating # - # # To identify an Agent who has provided a Rating. - # # # # Range: string or Agent. + # # + # # To identify an Agent who has provided a Rating. # # @return [RDF::Vocabulary::Term] # attr_reader :hasRatingProvider # - # # To identify an Agent who has provided a Rating. - # # # # Range: string or Agent. + # # + # # To identify an Agent who has provided a Rating. # # @return [RDF::Vocabulary::Term] # attr_reader :hasRatingSource # @@ -2822,9 +2822,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasRelatedAnimal # - # # To identify and Artefact related to EditorialObject or a resource. - # # # # Range: string or Artefact. + # # + # # To identify and Artefact related to EditorialObject or a resource. # # @return [RDF::Vocabulary::Term] # attr_reader :hasRelatedArtefact # @@ -2848,9 +2848,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasRelatedAudioTrack # - # # To identify an Award related to EditorialObject. - # # # # Range: string or Award. + # # + # # To identify an Award related to EditorialObject. # # @return [RDF::Vocabulary::Term] # attr_reader :hasRelatedAward # @@ -2890,9 +2890,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasRelatedPicture # - # # Range: string or PublicationChannel - # # # # To identify a Publication Channel + # # + # # Range: string or PublicationChannel # # @return [RDF::Vocabulary::Term] # attr_reader :hasRelatedPublicationChannel # @@ -2900,9 +2900,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasRelatedPublicationEvent # - # # To associate a Record with an Asset. - # # # # Range, a string a URI or a Record. + # # + # # To associate a Record with an Asset. # # @return [RDF::Vocabulary::Term] # attr_reader :hasRelatedRecord # @@ -2916,21 +2916,21 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasRelatedService # - # # Range: string or TextLine. - # # # # A TextLine or free text related to an EditorialObject. + # # + # # Range: string or TextLine. # # @return [RDF::Vocabulary::Term] # attr_reader :hasRelatedTextLine # - # # Range: string or Agent. - # # # # To define source of a Relation. + # # + # # Range: string or Agent. # # @return [RDF::Vocabulary::Term] # attr_reader :hasRelationSource # - # # A locator from where the Resource can be accessed. - # # # # Range: a locator e.g. a URI or a Locator. + # # + # # A locator from where the Resource can be accessed. # # @return [RDF::Vocabulary::Term] # attr_reader :hasResourceLocator # @@ -2940,9 +2940,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasReview # - # # To express Rights Clearance. - # # # # Range: string or Rights Clearance. + # # + # # To express Rights Clearance. # # @return [RDF::Vocabulary::Term] # attr_reader :hasRightsClearance # @@ -2952,15 +2952,15 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasRightsContact # - # # To identify an Agent (Contact/person or Organisation) having/managing Rights. - # # # # Range: a string or an Agent. + # # + # # To identify an Agent (Contact/person or Organisation) having/managing Rights. # # @return [RDF::Vocabulary::Term] # attr_reader :hasRightsHolder # - # # Range: a string or a Role/Concept from a controlled vocabulary. - # # # # To define the role of an Agent (Contact/person or Organisation). The association in a particular context is made by e.g. declaring the hasCastRole or hasCrewRole associated with the BusinessObject. + # # + # # Range: a string or a Role/Concept from a controlled vocabulary. # # @return [RDF::Vocabulary::Term] # attr_reader :hasRole # @@ -2984,15 +2984,15 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasShootingLocation # - # # To identify the presence of Signing associated to the BusinessObject/Resource. - # # # # A locator/URI to a resource or a Signing resource. + # # + # # To identify the presence of Signing associated to the BusinessObject/Resource. # # @return [RDF::Vocabulary::Term] # attr_reader :hasSigning # - # # To specify the format used for signing. - # # # # Range: string or SigningFormat. + # # + # # To specify the format used for signing. # # @return [RDF::Vocabulary::Term] # attr_reader :hasSigningFormat # @@ -3024,9 +3024,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasStakeholder # - # # Identifies the technical video standard of a MediaResource, i.e. NTSC or PAL. - # # # # Range: string or Standard + # # + # # Identifies the technical video standard of a MediaResource, i.e. NTSC or PAL. # # @return [RDF::Vocabulary::Term] # attr_reader :hasStandard # @@ -3036,33 +3036,33 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasStorageId # - # # Range:; string or Storage_Type - # # # # To define a type of storage associated with a locator from which a Resource can be accessed or can be retrieved. + # # + # # Range:; string or Storage_Type # # @return [RDF::Vocabulary::Term] # attr_reader :hasStorageType # - # # This property enables to associate an Asset with a subject which can be a string or a URI pointing to a term from a controlled vocabulary. - # # # # Range: string, anyURI or Subject + # # + # # This property enables to associate an Asset with a subject which can be a string or a URI pointing to a term from a controlled vocabulary. # # @return [RDF::Vocabulary::Term] # attr_reader :hasSubject # - # # To identify existing subtitling. - # # # # Range: string or Subtitling + # # + # # To identify existing subtitling. # # @return [RDF::Vocabulary::Term] # attr_reader :hasSubtitling # - # # The format of Subtitling. - # # # # Range: string or SubtitlingFormat + # # + # # The format of Subtitling. # # @return [RDF::Vocabulary::Term] # attr_reader :hasSubtitlingFormat # - # # To identify the source of the Subtitling resource. - # # # # Range: a string or an Agent. + # # + # # To identify the source of the Subtitling resource. # # @return [RDF::Vocabulary::Term] # attr_reader :hasSubtitlingSource # @@ -3096,9 +3096,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasTextLineRelatedAgent # - # # To identify a Character related to a TextLine. - # # # # Range: string or Character. + # # + # # To identify a Character related to a TextLine. # # @return [RDF::Vocabulary::Term] # attr_reader :hasTextLineRelatedCharacter # @@ -3120,9 +3120,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasTextLineType # - # # Range: a Concept, anyURI or a string - # # # # This property enables to associate an Asset with a theme which can be a string or a URI pointing to a term from a controlled vocabulary. A typical example is the Eurostats NACE classification. + # # + # # Range: a Concept, anyURI or a string # # @return [RDF::Vocabulary::Term] # attr_reader :hasTheme # @@ -3138,9 +3138,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasTimelineTrackPart # - # # To specify a type of TimelineTrack - # # # # Range: string or anyURI or TimelineTrack_Type. + # # + # # To specify a type of TimelineTrack # # @return [RDF::Vocabulary::Term] # attr_reader :hasTimelineTrackType # @@ -3158,9 +3158,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasTrackPart # - # # Range: string or TrackPurpose. - # # # # The purpose for which the Track is provided. + # # + # # Range: string or TrackPurpose. # # @return [RDF::Vocabulary::Term] # attr_reader :hasTrackPurpose # @@ -3186,15 +3186,15 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasVersion # - # # Range: string or VideoCodec - # # # # To identify a video codec + # # + # # Range: string or VideoCodec # # @return [RDF::Vocabulary::Term] # attr_reader :hasVideoCodec # - # # To specify the video encoding format. - # # # # Range: string or VideoEncodingFormat + # # + # # To specify the video encoding format. # # @return [RDF::Vocabulary::Term] # attr_reader :hasVideoEncodingFormat # @@ -3202,9 +3202,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasVideoTrack # - # # Range: string or WrappingType. - # # # # To specify the type of wrapping. + # # + # # Range: string or WrappingType. # # @return [RDF::Vocabulary::Term] # attr_reader :hasWrappingType # @@ -3236,9 +3236,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :idDateOfCreation # - # # Range: string or anyURI. - # # # # To provide the value attribued to an Identifier. + # # + # # Range: string or anyURI. # # @return [RDF::Vocabulary::Term] # attr_reader :identifierValue # @@ -3276,15 +3276,15 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :isAttributedTo # - # # To identify a Brand. - # # # # Range: a string or Brand + # # + # # To identify a Brand. # # @return [RDF::Vocabulary::Term] # attr_reader :isBrand # - # # To identify a character. - # # # # Range: string or Agent. + # # + # # To identify a character. # # @return [RDF::Vocabulary::Term] # attr_reader :isCharacter # @@ -3330,21 +3330,21 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :isEpisodeOf # - # # Range: string or Season. - # # # # The Episode of a Series or a Season. + # # + # # Range: string or Season. # # @return [RDF::Vocabulary::Term] # attr_reader :isEpisodeOfSeason # - # # Range: string or Series. - # # # # The Episode of a Series or a Season. + # # + # # Range: string or Series. # # @return [RDF::Vocabulary::Term] # attr_reader :isEpisodeOfSeries # - # # Range: a string or a FictitiousPerson. - # # # # To identify a Contact/Person being fictitious. + # # + # # Range: a string or a FictitiousPerson. # # @return [RDF::Vocabulary::Term] # attr_reader :isFictitiousPerson # @@ -3366,9 +3366,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :isMediaFragmentOf # - # # To identify a Group to which an EditorialObject is a member of. - # # # # Range: string or Group. + # # + # # To identify a Group to which an EditorialObject is a member of. # # @return [RDF::Vocabulary::Term] # attr_reader :isMemberOf # @@ -3380,9 +3380,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :isNextInSequence # - # # To identify the Service that operates the PublicationChannel. - # # # # Range: string or Service. + # # + # # To identify the Service that operates the PublicationChannel. # # @return [RDF::Vocabulary::Term] # attr_reader :isOperatedBy # @@ -3418,9 +3418,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :isReferencedBy # - # # Range: Service or string - # # # # To identify a Service assocoated to a PublicationEvent. + # # + # # Range: Service or string # # @return [RDF::Vocabulary::Term] # attr_reader :isReleasedBy # @@ -3442,9 +3442,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :isSeasonOf # - # # Range: Brand or string. - # # # # To associate a Series with a Brand. + # # + # # Range: Brand or string. # # @return [RDF::Vocabulary::Term] # attr_reader :isSeriesOf # @@ -3464,15 +3464,15 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :lineNumber # - # # To provide a link to a Logo - # # # # Range: string or Logo + # # + # # To provide a link to a Logo # # @return [RDF::Vocabulary::Term] # attr_reader :linkToLogo # - # # To provide a link to a Sticker - # # # # Range: anyURI or Sticker. + # # + # # To provide a link to a Sticker # # @return [RDF::Vocabulary::Term] # attr_reader :linkToSticker # @@ -3542,9 +3542,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :locationName # - # # Range: string or RegionCode - # # # # To provide a description of a particular region assocoated to the Location. + # # + # # Range: string or RegionCode # # @return [RDF::Vocabulary::Term] # attr_reader :locationRegion # @@ -3614,9 +3614,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :mediaResourceId # - # # To identify a type of MediaResource, e.g. a template'. - # # # # Range: MediaResource_Type or string + # # + # # To identify a type of MediaResource, e.g. a template'. # # @return [RDF::Vocabulary::Term] # attr_reader :mediaResourceType # @@ -3680,9 +3680,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :organisationDescription # - # # The identifier attributed to an Organisation - # # # # Range: string or Identifier + # # + # # The identifier attributed to an Organisation # # @return [RDF::Vocabulary::Term] # attr_reader :organisationId # @@ -3690,9 +3690,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :organisationName # - # # To define a type of an Organisation. - # # # # Range: string or anyURI or Concept. + # # + # # To define a type of an Organisation. # # @return [RDF::Vocabulary::Term] # attr_reader :organisationType # @@ -3720,9 +3720,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :partDescription # - # # The identifier of a Part. - # # # # Range: a string or Identifier + # # + # # The identifier of a Part. # # @return [RDF::Vocabulary::Term] # attr_reader :partId # @@ -3746,9 +3746,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :personHeight # - # # An identifier attributed to a Person. - # # # # Range: an Identifier or anyURI or string. + # # + # # An identifier attributed to a Person. # # @return [RDF::Vocabulary::Term] # attr_reader :personId # @@ -3826,9 +3826,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :provenanceName # - # # To define a type of Provenance. - # # # # Range: string, anyURI or Concept. + # # + # # To define a type of Provenance. # # @return [RDF::Vocabulary::Term] # attr_reader :provenanceType # @@ -3872,9 +3872,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :publicationEventDescription # - # # Range: Identifier, anyURI, string - # # # # An identifier attributed to a PublicationEvent. + # # + # # Range: Identifier, anyURI, string # # @return [RDF::Vocabulary::Term] # attr_reader :publicationEventId # @@ -3886,9 +3886,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :publicationEventTitle # - # # A type of PublicationEvent. - # # # # Range: a string or PublicationEvent_Type + # # + # # A type of PublicationEvent. # # @return [RDF::Vocabulary::Term] # attr_reader :publicationEventType # @@ -4028,9 +4028,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :relationTotalNumberOfGroupMembers # - # # Range: string or Relation_Type. - # # # # To define a type of Relation. + # # + # # Range: string or Relation_Type. # # @return [RDF::Vocabulary::Term] # attr_reader :relationType # @@ -4144,9 +4144,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :rightsTerritoryIncludes # - # # Range: a string or a Rights_Type or a ContractType. - # # # # To identify a type of Rights. + # # + # # Range: a string or a Rights_Type or a ContractType. # # @return [RDF::Vocabulary::Term] # attr_reader :rightsType # @@ -4364,9 +4364,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :timelineTrackDurationTimecodeDropFrame # - # # Specifies the title or name given to the resource. A root for the definition of subproperties defining ebucore titles of different types. The ebucore title type can be used to define sub-properties to optionally refine the category of the title. - # # # # All value of the EBU title status classification scheme (http://www.ebu.ch/metadata/cs/web/ebu_TitleStatusCodeCS_p.xml.htm) are candidates subproperties of the title property as implemented for an example with alternativeTitle. + # # + # # Specifies the title or name given to the resource. A root for the definition of subproperties defining ebucore titles of different types. The ebucore title type can be used to define sub-properties to optionally refine the category of the title. # # @return [RDF::Vocabulary::Term] # attr_reader :title # @@ -4392,9 +4392,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :trackName # - # # Range: string or Track_Type - # # # # The type attributed to a Track. + # # + # # Range: string or Track_Type # # @return [RDF::Vocabulary::Term] # attr_reader :trackType # diff --git a/lib/rdf/vocab/geonames.rb b/lib/rdf/vocab/geonames.rb index 6a01bbf..761d1ee 100644 --- a/lib/rdf/vocab/geonames.rb +++ b/lib/rdf/vocab/geonames.rb @@ -87,9 +87,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :colloquialName # - # # The countryCode value for a Geoname Feature is equal to the countryCode value of the parentCountry value. - # # # # A two letters country code in the ISO 3166 list + # # + # # The countryCode value for a Geoname Feature is equal to the countryCode value of the parentCountry value. # # @return [RDF::Vocabulary::Term] # attr_reader :countryCode # diff --git a/lib/rdf/vocab/gs1.rb b/lib/rdf/vocab/gs1.rb index 4484ed7..ad1c43b 100644 --- a/lib/rdf/vocab/gs1.rb +++ b/lib/rdf/vocab/gs1.rb @@ -455,9 +455,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :copperPerNutrientBasis # - # # Code specifying the country for the address using ISO 3166-1. - # # # # A short text string code (see values defined in ISO 3166) specifying the country in which a processing or other activity is performed, for example processing, bottling, manufacturing. + # # + # # Code specifying the country for the address using ISO 3166-1. # # @return [RDF::Vocabulary::Term] # attr_reader :countryCode # diff --git a/lib/rdf/vocab/ht.rb b/lib/rdf/vocab/ht.rb index 8fb540b..5357d44 100644 --- a/lib/rdf/vocab/ht.rb +++ b/lib/rdf/vocab/ht.rb @@ -10,8 +10,8 @@ module RDF::Vocab # # # # A namespace for describing HTTP messages (http://www.w3.org/Protocols/rfc2616/rfc2616.html) # # @version Working Draft 29 April 2011 - # # @see http://www.w3.org/TR/Content-in-RDF/ # # @see http://www.w3.org/WAI/intro/earl + # # @see http://www.w3.org/TR/Content-in-RDF/ # class HT < RDF::StrictVocabulary # # A connection used for HTTP transfer. # # @return [RDF::Vocabulary::Term] diff --git a/lib/rdf/vocab/ical.rb b/lib/rdf/vocab/ical.rb index 54b1042..ae7f732 100644 --- a/lib/rdf/vocab/ical.rb +++ b/lib/rdf/vocab/ical.rb @@ -6,8 +6,8 @@ module RDF::Vocab # @!parse # # Vocabulary for # # - # # @version $Id: icaltzd.rdf,v 1.6 2007/06/28 18:22:09 connolly Exp $ # # @version subject to change with notice to www-rdf-calendar@w3.org + # # @version $Id: icaltzd.rdf,v 1.6 2007/06/28 18:22:09 connolly Exp $ # # @see http://www.w3.org/2002/12/cal/ # # @see http://esw.w3.org/topic/RdfCalendar # # @see http://lists.w3.org/Archives/Public/www-rdf-calendar/ @@ -57,9 +57,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :Vtodo # - # # value type: TEXT - # # # # This property defines the action to be invoked when an alarm is triggered. + # # + # # value type: TEXT # # @return [RDF::Vocabulary::Term] # attr_reader :action # @@ -73,9 +73,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :attach # - # # value type: CAL-ADDRESS - # # # # The property defines an "Attendee" within a calendar component. + # # + # # value type: CAL-ADDRESS # # @return [RDF::Vocabulary::Term] # attr_reader :attendee # @@ -106,9 +106,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :calAddress # - # # value type: TEXT - # # # # This property defines the calendar scale used for the calendar information specified in the iCalendar object. + # # + # # value type: TEXT # # @return [RDF::Vocabulary::Term] # attr_reader :calscale # @@ -118,9 +118,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :categories # - # # value type: TEXT - # # # # This property defines the access classification for a calendar component. + # # + # # value type: TEXT # # @return [RDF::Vocabulary::Term] # attr_reader :class # @@ -128,33 +128,33 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :cn # - # # value type: TEXT - # # # # This property specifies non-processing information intended to provide a comment to the calendar user. + # # + # # value type: TEXT # # @return [RDF::Vocabulary::Term] # attr_reader :comment # - # # This property defines the date and time that a to-do was actually completed. - # # # # value type: DATE-TIME + # # + # # This property defines the date and time that a to-do was actually completed. # # @return [RDF::Vocabulary::Term] # attr_reader :completed # # # @return [RDF::Vocabulary::Term] # attr_reader :component # - # # value type: TEXT - # # # # The property is used to represent contact information or alternately a reference to contact information associated with the calendar component. + # # + # # value type: TEXT # # @return [RDF::Vocabulary::Term] # attr_reader :contact # # # @return [RDF::Vocabulary::Term] # attr_reader :count # - # # This property specifies the date and time that the calendar information was created by the calendar user agent in the calendar store. Note: This is analogous to the creation date and time for a file in the file system. - # # # # value type: DATE-TIME + # # + # # This property specifies the date and time that the calendar information was created by the calendar user agent in the calendar store. Note: This is analogous to the creation date and time for a file in the file system. # # @return [RDF::Vocabulary::Term] # attr_reader :created # @@ -183,9 +183,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :dir # - # # This property specifies the date and time that a calendar component ends. - # # # # default value type: DATE-TIME + # # + # # This property specifies the date and time that a calendar component ends. # # @return [RDF::Vocabulary::Term] # attr_reader :dtend # @@ -201,9 +201,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :dtstart # - # # default value type: DATE-TIME - # # # # This property defines the date and time that a to-do is expected to be completed. + # # + # # default value type: DATE-TIME # # @return [RDF::Vocabulary::Term] # attr_reader :due # @@ -217,15 +217,15 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :encoding # - # # default value type: DATE-TIME - # # # # This property defines the list of date/time exceptions for a recurring calendar component. + # # + # # default value type: DATE-TIME # # @return [RDF::Vocabulary::Term] # attr_reader :exdate # - # # value type: RECUR - # # # # This property defines a rule or repeating pattern for an exception to a recurrence set. + # # + # # value type: RECUR # # @return [RDF::Vocabulary::Term] # attr_reader :exrule # @@ -237,9 +237,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :fmttype # - # # value type: PERIOD - # # # # The property defines one or more free or busy time intervals. + # # + # # value type: PERIOD # # @return [RDF::Vocabulary::Term] # attr_reader :freebusy # @@ -259,15 +259,15 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :language # - # # The property specifies the date and time that the information associated with the calendar component was last revised in the calendar store. Note: This is analogous to the modification date and time for a file in the file system. - # # # # value type: DATE-TIME + # # + # # The property specifies the date and time that the information associated with the calendar component was last revised in the calendar store. Note: This is analogous to the modification date and time for a file in the file system. # # @return [RDF::Vocabulary::Term] # attr_reader :lastModified # - # # value type: TEXT - # # # # The property defines the intended venue for the activity defined by a calendar component. + # # + # # value type: TEXT # # @return [RDF::Vocabulary::Term] # attr_reader :location # @@ -281,9 +281,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :method # - # # The property defines the organizer for a calendar component. - # # # # value type: CAL-ADDRESS + # # + # # The property defines the organizer for a calendar component. # # @return [RDF::Vocabulary::Term] # attr_reader :organizer # @@ -297,9 +297,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :percentComplete # - # # The property defines the relative priority for a calendar component. - # # # # value type: INTEGER + # # + # # The property defines the relative priority for a calendar component. # # @return [RDF::Vocabulary::Term] # attr_reader :priority # @@ -313,15 +313,15 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :range # - # # default value type: DATE-TIME - # # # # This property defines the list of date/times for a recurrence set. + # # + # # default value type: DATE-TIME # # @return [RDF::Vocabulary::Term] # attr_reader :rdate # - # # This property is used in conjunction with the "UID" and "SEQUENCE" property to identify a specific instance of a recurring "VEVENT", "VTODO" or "VJOURNAL" calendar component. The property value is the effective value of the "DTSTART" property of the recurrence instance. - # # # # default value type: DATE-TIME + # # + # # This property is used in conjunction with the "UID" and "SEQUENCE" property to identify a specific instance of a recurring "VEVENT", "VTODO" or "VJOURNAL" calendar component. The property value is the effective value of the "DTSTART" property of the recurrence instance. # # @return [RDF::Vocabulary::Term] # attr_reader :recurrenceId # @@ -339,21 +339,21 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :reltype # - # # This property defines the number of time the alarm should be repeated, after the initial trigger. - # # # # value type: INTEGER + # # + # # This property defines the number of time the alarm should be repeated, after the initial trigger. # # @return [RDF::Vocabulary::Term] # attr_reader :repeat # - # # value type: TEXT - # # # # This property defines the status code returned for a scheduling request. + # # + # # value type: TEXT # # @return [RDF::Vocabulary::Term] # attr_reader :requestStatus # - # # value type: TEXT - # # # # This property defines the equipment or resources anticipated for an activity specified by a calendar entity.. + # # + # # value type: TEXT # # @return [RDF::Vocabulary::Term] # attr_reader :resources # @@ -361,9 +361,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :role # - # # value type: RECUR - # # # # This property defines a rule or repeating pattern for recurring events, to-dos, or time zone definitions. + # # + # # value type: RECUR # # @return [RDF::Vocabulary::Term] # attr_reader :rrule # @@ -375,9 +375,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :sentBy # - # # value type: integer - # # # # This property defines the revision sequence number of the calendar component within a sequence of revisions. + # # + # # value type: integer # # @return [RDF::Vocabulary::Term] # attr_reader :sequence # @@ -396,23 +396,23 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :summary # - # # value type: TEXT - # # # # This property defines whether an event is transparent or not to busy time searches. + # # + # # value type: TEXT # # @return [RDF::Vocabulary::Term] # attr_reader :transp # - # # This property specifies when an alarm will trigger. - # # # # default value type: DURATION + # # + # # This property specifies when an alarm will trigger. # # @return [RDF::Vocabulary::Term] # attr_reader :trigger # - # # value type: TEXT + # # This property specifies the text value that uniquely identifies the "VTIMEZONE" calendar component. # # # # To specify the identifier for the time zone definition for a time component in the property value. # # - # # This property specifies the text value that uniquely identifies the "VTIMEZONE" calendar component. + # # value type: TEXT # # @return [RDF::Vocabulary::Term] # attr_reader :tzid # @@ -440,24 +440,24 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :tzurl # - # # value type: TEXT - # # # # This property defines the persistent, globally unique identifier for the calendar component. + # # + # # value type: TEXT # # @return [RDF::Vocabulary::Term] # attr_reader :uid # # # @return [RDF::Vocabulary::Term] # attr_reader :until # - # # This property defines a Uniform Resource Locator (URL) associated with the iCalendar object. - # # # # value type: URI + # # + # # This property defines a Uniform Resource Locator (URL) associated with the iCalendar object. # # @return [RDF::Vocabulary::Term] # attr_reader :url # - # # value type: TEXT - # # # # This property specifies the identifier corresponding to the highest version number or the minimum and maximum range of the iCalendar specification that is required in order to interpret the iCalendar object. + # # + # # value type: TEXT # # @return [RDF::Vocabulary::Term] # attr_reader :version # diff --git a/lib/rdf/vocab/jsonld.rb b/lib/rdf/vocab/jsonld.rb index 95d97ac..5a33d16 100644 --- a/lib/rdf/vocab/jsonld.rb +++ b/lib/rdf/vocab/jsonld.rb @@ -9,7 +9,7 @@ module RDF::Vocab # # The JSON-LD Vocabulary # # # # This is a vocabulary document and is used to achieve certain features of the JSON-LD language. - # # @version https://github.com/w3c/json-ld-wg/commit/606458561d3761dad00912b4ac7b1959302ef304 + # # @version https://github.com/w3c/json-ld-wg/commit/dfd1827c95a66bc36c01368e10b6e4f4bbb5c8b3 # # @see http://www.w3.org/TR/json-ld11 # class JSONLD < RDF::StrictVocabulary # # Defines term definitions and other aspects of a JSON-LD `Context`. A [context definition](https://www.w3.org/TR/json-ld11/#dfn-context-definition) MUST be a map whose keys MUST be either _terms_, _compact IRIs_, _IRIs_, or one of the keywords `@base`, `@import`, `@language`, `@propagate`, `@protected`, `@type`, `@version`, or `@vocab`. @@ -136,6 +136,10 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :setContainerType # + # # This profile URI is used to request or specify streaming JSON-LD document form. + # # @return [RDF::Vocabulary::Term] + # attr_reader :streaming + # # # If the [expanded term definition](https://www.w3.org/TR/json-ld11/#dfn-expanded-term-definitions) contains the `@container` keyword, its value MUST be either `@list`, `@set`, `@language`, `@index`, `@id`, `@graph`, `@type`, or be `null` or an _array_ containing exactly any one of those keywords. # # @return [RDF::Vocabulary::Term] # attr_reader :typeContainerType @@ -145,10 +149,10 @@ module RDF::Vocab # Ontology definition ontology :"http://www.w3.org/ns/json-ld#", - "dc:date": "2020-01-03".freeze, + "dc:date": "2020-03-30".freeze, "dc:description": "This is a vocabulary document and is used to achieve certain features of the JSON-LD language.".freeze, "dc:title": "The JSON-LD Vocabulary".freeze, - "owl:versionInfo": "https://github.com/w3c/json-ld-wg/commit/606458561d3761dad00912b4ac7b1959302ef304".freeze, + "owl:versionInfo": "https://github.com/w3c/json-ld-wg/commit/dfd1827c95a66bc36c01368e10b6e4f4bbb5c8b3".freeze, "rdfs:seeAlso": "http://www.w3.org/TR/json-ld11".freeze, type: "owl:Ontology".freeze @@ -393,6 +397,12 @@ module RDF::Vocab label: "@set".freeze, "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11/#context-definitions".freeze, type: "http://www.w3.org/ns/ContainerType".freeze + term :streaming, + comment: %(This profile URI is used to request or specify streaming JSON-LD document form.).freeze, + isDefinedBy: "jsonld:".freeze, + label: "streaming".freeze, + "rdfs:seeAlso": "https://www.w3.org/TR/json-ld11-streaming/#streaming-profile".freeze, + type: "owl:NamedIndividual".freeze term :typeContainerType, comment: %(If the [expanded term definition]\(https://www.w3.org/TR/json-ld11/#dfn-expanded-term-definitions\) contains the `@container` keyword, its value MUST be either `@list`, `@set`, `@language`, `@index`, `@id`, `@graph`, `@type`, or be `null` or an _array_ containing exactly any one of those keywords.).freeze, isDefinedBy: "jsonld:".freeze, diff --git a/lib/rdf/vocab/ldp.rb b/lib/rdf/vocab/ldp.rb index 84259cd..025f522 100644 --- a/lib/rdf/vocab/ldp.rb +++ b/lib/rdf/vocab/ldp.rb @@ -13,11 +13,11 @@ module RDF::Vocab # # This ontology provides an informal representation of the concepts and terms as defined in the LDP specification. Consult the LDP specification for normative reference. # # # # Vocabulary URIs defined in the Linked Data Platform (LDP) namespace. - # # @see http://www.w3.org/TR/ldp/ - # # @see http://www.w3.org/TR/ldp-ucr/ + # # @see http://www.w3.org/2011/09/LinkedData/ # # @see http://www.w3.org/TR/ldp-paging/ + # # @see http://www.w3.org/TR/ldp-ucr/ # # @see http://www.w3.org/2012/ldp - # # @see http://www.w3.org/2011/09/LinkedData/ + # # @see http://www.w3.org/TR/ldp/ # class LDP < RDF::Vocabulary # # An LDPC that uses a predefined predicate to simply link to its contained resources. # # @return [RDF::Vocabulary::Term] diff --git a/lib/rdf/vocab/lrmi.rb b/lib/rdf/vocab/lrmi.rb index 0e57cb6..07f92d7 100644 --- a/lib/rdf/vocab/lrmi.rb +++ b/lib/rdf/vocab/lrmi.rb @@ -5,7 +5,75 @@ module RDF::Vocab # @!parse # # Vocabulary for + # # + # # LRMI RDF Specification + # # + # # The LRMI specification is a collection of classes and properties for markup and description of educational resources. The specification builds on the extensive vocabulary provided by Schema.org and other standards. # class LRMI < RDF::Vocabulary + # # An intangible item that describes an alignment between a learning resource and a node in an educational framework. + # # @return [RDF::Vocabulary::Term] + # attr_reader :AlignmentObject + # + # # An individual or group for whom the learning resource was created or useful. + # # @return [RDF::Vocabulary::Term] + # attr_reader :EducationalAudience + # + # # A category of alignment between the learning resource and the framework node. + # # @return [RDF::Vocabulary::Term] + # attr_reader :alignmentType + # + # # An alignment to an established educational framework. + # # @return [RDF::Vocabulary::Term] + # attr_reader :educationalAlignment + # + # # The framework to which the resource being described is aligned. + # # @return [RDF::Vocabulary::Term] + # attr_reader :educationalFramework + # + # # The role that describes the target audience of the content. + # # @return [RDF::Vocabulary::Term] + # attr_reader :educationalRole + # + # # The purpose of a work in the context of education. + # # @return [RDF::Vocabulary::Term] + # attr_reader :educationalUse + # + # # The predominant mode of learning supported by the learning resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :interactivityType + # + # # A resource that was used in the creation of this resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :isBasedOnUrl + # + # # The predominant type or kind characterizing the learning resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :learningResourceType + # + # # The description of a node in an established educational framework. + # # @return [RDF::Vocabulary::Term] + # attr_reader :targetDescription + # + # # The name of a node in an established educational framework. + # # @return [RDF::Vocabulary::Term] + # attr_reader :targetName + # + # # The URL of a node in an established educational framework. + # # @return [RDF::Vocabulary::Term] + # attr_reader :targetUrl + # + # # Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience. + # # @return [RDF::Vocabulary::Term] + # attr_reader :timeRequired + # + # # The typical expected age range. + # # @return [RDF::Vocabulary::Term] + # attr_reader :typicalAgeRange + # + # # The URL where the owner specifies permissions for using the resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :useRightsUrl + # # end LRMI = Class.new(RDF::Vocabulary("http://purl.org/dcx/lrmi-terms/")) do diff --git a/lib/rdf/vocab/mads.rb b/lib/rdf/vocab/mads.rb index 28daa3c..6f622e9 100644 --- a/lib/rdf/vocab/mads.rb +++ b/lib/rdf/vocab/mads.rb @@ -922,7 +922,7 @@ module RDF::Vocab comment: %(This relates an Authority or Variant to its administrative metadata, which is, minimimally, a Class defined outside of the MADS/RDF namespace. The RecordInfo Class from the RecordInfo ontology is recommended.).freeze, domain: term( type: "owl:Class".freeze, - unionOf: list("_:g10900".freeze, "_:g10920".freeze, "_:g10940".freeze) + unionOf: list("_:g10080".freeze, "_:g10100".freeze, "_:g10120".freeze) ), label: "Administrative Metadata".freeze, type: "owl:ObjectProperty".freeze @@ -1004,7 +1004,7 @@ module RDF::Vocab comment: %(A code is a string of characters associated with a the authoritative or deprecated label. It may record an historical notation once used to uniquely identify a concept.).freeze, domain: term( type: "owl:Class".freeze, - unionOf: list("_:g11420".freeze, "_:g11440".freeze) + unionOf: list("_:g10600".freeze, "_:g10620".freeze) ), label: "Code".freeze, subPropertyOf: "skos:notation".freeze, @@ -1015,7 +1015,7 @@ module RDF::Vocab label: "Component List".freeze, range: term( type: "owl:Class".freeze, - unionOf: list("_:g11540".freeze, "_:g11560".freeze) + unionOf: list("_:g10720".freeze, "_:g10740".freeze) ), type: "owl:ObjectProperty".freeze property :country, @@ -1070,7 +1070,7 @@ module RDF::Vocab label: "Element List".freeze, range: term( type: "owl:Class".freeze, - unionOf: list("_:g11900".freeze, "_:g11920".freeze) + unionOf: list("_:g11080".freeze, "_:g11100".freeze) ), type: "owl:ObjectProperty".freeze property :elementValue, @@ -1225,7 +1225,7 @@ module RDF::Vocab label: "Has MADSCollection Member".freeze, range: term( type: "owl:Class".freeze, - unionOf: list("_:g12800".freeze, "_:g12820".freeze) + unionOf: list("_:g11980".freeze, "_:g12000".freeze) ), subPropertyOf: "skos:member".freeze, type: "owl:ObjectProperty".freeze @@ -1236,7 +1236,7 @@ module RDF::Vocab label: "Has MADS Scheme Member".freeze, range: term( type: "owl:Class".freeze, - unionOf: list("_:g12960".freeze, "_:g12980".freeze) + unionOf: list("_:g12140".freeze, "_:g12160".freeze) ), type: "owl:ObjectProperty".freeze property :hasNarrowerAuthority, @@ -1347,7 +1347,7 @@ module RDF::Vocab comment: %(Associates a Collection with a madsrdf:Authority or another madsrdf:MADSCollection.).freeze, domain: term( type: "owl:Class".freeze, - unionOf: list("_:g13540".freeze, "_:g13560".freeze) + unionOf: list("_:g12720".freeze, "_:g12740".freeze) ), inverseOf: "mads:hasMADSCollectionMember".freeze, label: "Is Member Of MADSCollection".freeze, @@ -1356,7 +1356,7 @@ module RDF::Vocab property :isMemberOfMADSScheme, domain: term( type: "owl:Class".freeze, - unionOf: list("_:g13640".freeze, "_:g13660".freeze) + unionOf: list("_:g12820".freeze, "_:g12840".freeze) ), inverseOf: "mads:hasMADSSchemeMember".freeze, label: "Is Member of MADS Scheme".freeze, @@ -1367,7 +1367,7 @@ module RDF::Vocab comment: %(Identifies a MADS Scheme in which the Authority is at the top of the hierarchy.).freeze, domain: term( type: "owl:Class".freeze, - unionOf: list("_:g13780".freeze, "_:g13800".freeze) + unionOf: list("_:g12960".freeze, "_:g12980".freeze) ), inverseOf: "mads:hasTopMemberOfMADSScheme".freeze, label: "Is Top Member of MADS Scheme".freeze, diff --git a/lib/rdf/vocab/premis.rb b/lib/rdf/vocab/premis.rb index 06bdd9d..a03898b 100644 --- a/lib/rdf/vocab/premis.rb +++ b/lib/rdf/vocab/premis.rb @@ -18,9 +18,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :Agent # - # # Rationale Specific dates may apply to the particular rights statement. - # # # # Definition: The date range during which the particular rights statement applies or is applied to the content. + # # + # # Rationale Specific dates may apply to the particular rights statement. # # @return [RDF::Vocabulary::Term] # attr_reader :ApplicableDates # @@ -28,35 +28,35 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :Bitstream # + # # Creation / Maintenance Notes: A preservation repository should never refer to content that it does not control. Therefore, the PREMIS working group assumed that the repository will always assign the contentLocation, probably by program. + # # # # Definition: Information needed to retrieve a file from the storage system, or to access a bitstream within a file. # # # # Usage Notes: If the preservation repository uses the objectIdentifier as a handle for retrieving data, contentLocation is implicit and does not need to be recorded. - # # - # # Creation / Maintenance Notes: A preservation repository should never refer to content that it does not control. Therefore, the PREMIS working group assumed that the repository will always assign the contentLocation, probably by program. # # @return [RDF::Vocabulary::Term] # attr_reader :ContentLocation # - # # Definition: Information about the copyright status of the object(s). - # # # # Usage Notes: When rights basis is a copyright, copyrightInformation should be provided. Repositories may need to extend this with more detailed information. See the California Digital Library's copyrightMD schema (www.cdlib.org/inside/projects/rights/schema/) for an example of a more detailed scheme. + # # + # # Definition: Information about the copyright status of the object(s). # # @return [RDF::Vocabulary::Term] # attr_reader :CopyrightInformation # # # Creation / Maintenance Notes: If the object was created by the repository, assignment of creating application information should be straightforward. If the object was created outside the repository, it is possible this information could be supplied by the depositor. It might also be extracted from the file itself; the name of the creating application is often embedded within the file. # # - # # Definition: Information about the application that created the object. - # # # # Rationale: Information about the creating application, including the version of the application and the date the file was created, can be useful for problem solving purposes. For example, it is not uncommon for certain versions of software to be known for causing conversion errors or introducing artifacts. It is also useful to determine which rendering software is available for the digital object. For example, if you know that the Distiller program created the PDF file, you know it will be renderable with (among other programs) Adobe Reader. # # + # # Definition: Information about the application that created the object. + # # # # Usage Notes: This semantic unit applies to both objects created external to the repository and subsequently ingested, and to objects created by the repository, for example, through migration events. The creatingApplication container is repeatable if more than one application processed the object in turn. For example, a file could be created by Microsoft Word and later turned into a PDF using Adobe Acrobat. Details of both the Word and Acrobat applications may be recorded. However, if both files are stored in the repository, each file should be completely described as an Object entity and linked by using relationship information with a relationshipType “derivation.” It may also be repeated to record the creating application before the object was ingested as well as the creating application used as part of the ingest process. For example, an HTML file was created pre-ingest using Dreamweaver, and the Web crawler Heritrix then captured a snapshot of the files as part of the ingest. The amount of information needed for creatingApplication given here is minimal. For more granularity, extensibility is provided. Rather than having each repository record this locally, it would be preferable to have a registry of this information similar to format or environment registries. # # @return [RDF::Vocabulary::Term] # attr_reader :CreatingApplication # - # # Usage Notes: This semantic unit is for additional objects that are necessary to render a file or representation, not for required software or hardware. It may also be used for a non-executable component of the object, such as a font or style sheet. For things that the software requires, see swDependency. This semantic unit does not include objects required by structural relationships, such as child content objects (e.g., figures that are part of an article), which are recorded under relationship with a relationshipType of “structural”. It is up to the repository to determine what constitutes a dependency in the context of the designated community. The objects noted may be internal or external to the preservation repository. - # # # # Creation / Maintenance Notes: Recommended practice is for a repository to archive objects on which other objects depend. These may be sent by the submitter of the primary object, or they may in some cases be automatically obtained by the repository. For example, a markup file will often contain links to other objects it requires such as DTDs or XML Schema. If it does, these objects can often be identified by the link and downloaded by the repository. # # # # Definition: Information about a non-software component or associated file needed in order to use or render the representation or file, for example, a schema, a DTD, or an entity file declaration. + # # + # # Usage Notes: This semantic unit is for additional objects that are necessary to render a file or representation, not for required software or hardware. It may also be used for a non-executable component of the object, such as a font or style sheet. For things that the software requires, see swDependency. This semantic unit does not include objects required by structural relationships, such as child content objects (e.g., figures that are part of an article), which are recorded under relationship with a relationshipType of “structural”. It is up to the repository to determine what constitutes a dependency in the context of the designated community. The objects noted may be internal or external to the preservation repository. # # @return [RDF::Vocabulary::Term] # attr_reader :Dependency # @@ -76,11 +76,11 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :Event # - # # Usage Notes: This may be used to record all error and warning messages issued by a program involved in the event or to record a pointer to an error log. If the event was a validity check (e.g., profile conformance) any anomalies or quirks discovered would be recorded here. All subunits of this semantic unit are optional. At least one subunit (i.e. eventOutcomeDetailNote and/or eventOutcomeDetailExtension) must be present if this container is included. + # # Definition: A detailed description of the result or product of the event. # # # # Rationale: An event outcome may be sufficiently complex that a coded description is not adequate to document it. # # - # # Definition: A detailed description of the result or product of the event. + # # Usage Notes: This may be used to record all error and warning messages issued by a program involved in the event or to record a pointer to an error log. If the event was a validity check (e.g., profile conformance) any anomalies or quirks discovered would be recorded here. All subunits of this semantic unit are optional. At least one subunit (i.e. eventOutcomeDetailNote and/or eventOutcomeDetailExtension) must be present if this container is included. # # @return [RDF::Vocabulary::Term] # attr_reader :EventOutcomeDetail # @@ -94,21 +94,21 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :File # - # # Definition: Information used to verify whether an object has been altered in an undocumented or unauthorized way. - # # # # Usage Notes: To perform a fixity check, a message digest calculated at some earlier time is compared with a message digest calculated at a later time. If the digests are the same, the object was not altered in the interim. Recommended practice is to use two or more message digests calculated by different algorithms. (Note that the terms “message digest” and “checksum” are commonly used interchangeably. However, the term “checksum” is more correctly used for the product of a cyclical redundancy check (CRC), whereas the term “message digest” refers to the result of a cryptographic hash function, which is what is referred to here.) The act of performing a fixity check and the date it occurred would be recorded as an Event. The result of the check would be recorded as the eventOutcome. Therefore, only the messageDigestAlgorithm and messageDigest need to be recorded as objectCharacteristics for future comparison. Representation level: It could be argued that if a representation consists of a single file or if all the files comprised by a representation are combined (e.g., zipped) into a single file, then a fixity check could be performed on the representation. However, in both cases the fixity check is actually being performed on a file, which in this case happens to be coincidental with a representation. Bitstream level: Message digests can be computed for bitstreams although they are not as common as with files. For example, the JPX format, which is a JPEG2000 format, supports the inclusion of MD5 or SHA-1 message digests in internal metadata that was calculated on any range of bytes of the file. # # # # Creation / Maintenance Notes: Automatically calculated and recorded by repository. + # # + # # Definition: Information used to verify whether an object has been altered in an undocumented or unauthorized way. # # @return [RDF::Vocabulary::Term] # attr_reader :Fixity # # # Usage Notes: A bitstream embedded within a file may have different characteristics than the larger file. For example, a bitstream in LaTex format could be embedded within an SGML file, or multiple images using different colorspaces could be embedded within a TIFF file. format must be recorded for every object. When the bitstream format can be recognized by the repository and the repository might want to treat the bitstream differently from the embedding file for preservation purposes, format can be recorded for embedded bitstreams. Although this semantic unit is mandatory, both of its subunits are optional. At least one subunit (i.e. either formatDesignation or formatRegistry) must be present if this container is included or both may be used. If the subunit (formatDesignation or formatRegistry) needs to be repeated, the entire format container is repeated. This allows for association of format designation with a particular set of format registry information. For example, if the precise format cannot be determined and two format designations are recorded, each is given within a separate format container. The format container may also be repeated for multiple format registry entries. # # - # # Definition: Identification of the format of a file or bitstream where format is the organization of digital information according to preset specifications. - # # # # Creation / Maintenance Notes: The format of a file or bitstream should be ascertained by the repository on ingest. Even if this information is provided by the submitter, directly in metadata or indirectly via the file name extension, recommended practice is to independently identify the format by parsing the file when possible. If the format cannot be identified at the time of ingest, it is valid to record that it is unknown, but the repository should subsequently make an effort to identify the format, even if manual intervention is required. # # # # Rationale: Many preservation activities depend on detailed knowledge about the format of the digital object. An accurate identification of format is essential. The identification provided, whether by name or pointer into a format registry, should be sufficient to associate the object with more detailed format information. + # # + # # Definition: Identification of the format of a file or bitstream where format is the organization of digital information according to preset specifications. # # @return [RDF::Vocabulary::Term] # attr_reader :Format # @@ -118,11 +118,11 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :FormatDesignation # - # # Definition: Identifies and/or gives further information about the format by reference to an entry in a format registry. - # # # # Rationale: If central format registries are available to the preservation repository, they may provide an excellent way of referencing detailed format information. # # # # Usage Notes: Either formatDesignation or at least one instance of formatRegistry is required. If more than one formatRegistry needs to be recorded the format container should be repeated to include each additional set of formatRegistry information. The PREMIS working group assumed that a number of format registries will be developed and maintained to support digital preservation efforts. The proposal for a Global Digital Format Registry (GDFR) (http://hul.harvard.edu/gdfr/documents.html#data), for example, would create a network-accessible registry designed to store detailed specifications on formats and profiles. + # # + # # Definition: Identifies and/or gives further information about the format by reference to an entry in a format registry. # # @return [RDF::Vocabulary::Term] # attr_reader :FormatRegistry # @@ -136,19 +136,19 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :Identifier # - # # Definition: Features of the object intended to inhibit access, use, or migration. - # # - # # Creation / Maintenance Notes: Inhibitors are more likely to be present on an object ingested by the repository than applied by the repository itself. It is often not possible to tell that a file has been encrypted by parsing it; the file may appear to be ASCII text. Therefore, information about inhibitors should be supplied as metadata with submitted objects when possible. + # # Rationale: Format information may indicate whether a file is encrypted, but the nature of the encryption also must be recorded, as well as the access key. # # # # Usage Notes: Some file formats allow encryption for embedded bitstreams. Some file formats such as PDF use passwords to control access to content or specific functions. Although this is actually implemented at the bitstream level, for preservation purposes it is effectively managed at the file level; that is, passwords would not be recorded for individually addressable bitstreams. For certain types of inhibitor keys, more granularity may be required. If the inhibitor key information is identical to key information in digital signatures, use those semantic units. # # - # # Rationale: Format information may indicate whether a file is encrypted, but the nature of the encryption also must be recorded, as well as the access key. + # # Creation / Maintenance Notes: Inhibitors are more likely to be present on an object ingested by the repository than applied by the repository itself. It is often not possible to tell that a file has been encrypted by parsing it; the file may appear to be ASCII text. Therefore, information about inhibitors should be supplied as metadata with submitted objects when possible. + # # + # # Definition: Features of the object intended to inhibit access, use, or migration. # # @return [RDF::Vocabulary::Term] # attr_reader :Inhibitors # - # # Definition: a set of content that is considered a single intellectual unit for purposes of management and description: for example, a particular book, map, photograph, or database. An Intellectual Entity can include other Intellectual Entities; for example, a Web site can include a Web page; a Web page can include an image. An Intellectual Entity may have one or more digital representations. - # # # # Intellectual entities are described via Descriptive metadata models. These are very domain-specific and are out of scope for PREMIS. Examples: Dublin Core, Mets, MARC + # # + # # Definition: a set of content that is considered a single intellectual unit for purposes of management and description: for example, a particular book, map, photograph, or database. An Intellectual Entity can include other Intellectual Entities; for example, a Web site can include a Web page; a Web page can include an image. An Intellectual Entity may have one or more digital representations. # # @return [RDF::Vocabulary::Term] # attr_reader :IntellectualEntity # @@ -158,19 +158,19 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :LicenseInformation # + # # Entity properties: Can be associated with one or more rights statements. Can participate in one or more events. Links between entities may be recorded from either direction and need not be bi-directional. + # # # # The object class aggregates information about a digital object held by a preservation repository and describes those characteristics relevant to preservation management. The only mandatory property is objectIdentifier. The object class has three subclasses: Representation, File, and Bitstream. # # # # Entity types: Representation: A digital object instantiating or embodying an Intellectual Entity. A representation is the set of stored digital files and structural metadata needed to provide a complete and reasonable rendition of the Intellectual Entity. File: A named and ordered sequence of bytes that is known to an operating system. Bitstream: Contiguous or non-contiguous data within a file that has meaningful properties for preservation purposes. - # # - # # Entity properties: Can be associated with one or more rights statements. Can participate in one or more events. Links between entities may be recorded from either direction and need not be bi-directional. # # @return [RDF::Vocabulary::Term] # attr_reader :Object # # # Usage Notes: The semantic units included in objectCharacteristics should be treated as a set of information that pertains to a single object at a single compositionLevel. Object characteristics may be repeated when an object was created by applying two or more encodings, such as compression and encryption. In this case each repetition of objectCharacteristics would have an incrementally higher compositionLevel. When encryption is applied, the objectCharacteristics block must include an inhibitors semantic unit. A bitstream embedded within a file may have different object characteristics than the file. Where these characteristics are relevant for preservation, they should be recorded. When a single file is equivalent to a representation, objectCharacteristics may be applied and thus associated with the representation. In these cases, the relationship between the file comprising the representation and other associated files may be expressed using relationshipSubType. # # - # # Rationale: There are some important technical properties that apply to objects of any format. Detailed definition of format-specific properties is outside the scope of this Data Dictionary, although such properties may be included within objectCharacteristicsExtension. - # # # # Definition: Technical properties of a file or bitstream that are applicable to all or most formats. + # # + # # Rationale: There are some important technical properties that apply to objects of any format. Detailed definition of format-specific properties is outside the scope of this Data Dictionary, although such properties may be included within objectCharacteristicsExtension. # # @return [RDF::Vocabulary::Term] # attr_reader :ObjectCharacteristics # @@ -178,19 +178,19 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :PremisEntity # - # # Definition: Information indicating the decision or policy on the set of preservation functions to be applied to an object and the context in which the decision or policy was made. - # # # # Creation / Maintenance Notes: The preservation level may be assigned by the repository or requested by the depositor and submitted as metadata. The repository may also choose to record additional metadata indicating the context for the assignment of the preservation level. # # - # # Usage Notes: If the repository offers only a single preservation level, this value does not need to be explicitly recorded within the repository. Application of a particular set of preservationLevel semantic units may only cover a single representation of an object: representations in other technical forms or serving other functions may have a different preservationLevel applied. The container may be repeated if a preservation level value needs to be recorded in additional contexts (see preservationLevelRole). - # # # # Rationale: Some preservation repositories will offer multiple preservation options depending on factors such as the value or uniqueness of the material, the “preservability” of the format, the amount the customer is willing to pay, etc. The context surrounding the choice of a particular preservation option for an object may also require further explanation. + # # + # # Definition: Information indicating the decision or policy on the set of preservation functions to be applied to an object and the context in which the decision or policy was made. + # # + # # Usage Notes: If the repository offers only a single preservation level, this value does not need to be explicitly recorded within the repository. Application of a particular set of preservationLevel semantic units may only cover a single representation of an object: representations in other technical forms or serving other functions may have a different preservationLevel applied. The container may be repeated if a preservation level value needs to be recorded in additional contexts (see preservationLevelRole). # # @return [RDF::Vocabulary::Term] # attr_reader :PreservationLevel # - # # Usage Notes: The related object may or may not be held within the preservation repository. Recommended practice is that objects reside within the repository unless there is a good reason to reference an object outside. Internal and external references should be clear. - # # # # Definition: The identifier and sequential context of the related resource + # # + # # Usage Notes: The related object may or may not be held within the preservation repository. Recommended practice is that objects reside within the repository unless there is a good reason to reference an object outside. Internal and external references should be clear. # # @return [RDF::Vocabulary::Term] # attr_reader :RelatedObjectIdentification # @@ -214,11 +214,11 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :RightsStatement # + # # Rationale: A repository may have a policy of generating digital signatures for files on ingest, or may have a need to store and later validate incoming digital signatures. + # # # # Definition: Information needed to use a digital signature to authenticate the signer of an object and/or the information contained in the object. # # # # Usage Notes: Several of the semantic components of signatureInformation are taken from the W3C’s XML-Signature Syntax and Processing; see www.w3.org/TR/2002/REC-xmldsig-core-20020212/ for more information on the structure and application of these semantic units. - # # - # # Rationale: A repository may have a policy of generating digital signatures for files on ingest, or may have a need to store and later validate incoming digital signatures. # # @return [RDF::Vocabulary::Term] # attr_reader :Signature # @@ -226,29 +226,29 @@ module RDF::Vocab # # # # Rationale: Objects that have the same technical properties may still differ as to the properties that should be preserved for future presentation or use. # # - # # Usage Notes: All of this semantic unit’s subunits are optional. At least one of the significantPropertiesValue and significantPropertiesExtension subunits must be present if this container is included or both may be used. Significant properties may be objective technical characteristics subjectively considered important, or subjectively determined characteristics. For example, a PDF may contain links that are not considered important and JavaScript that is considered important. Or future migrations of a TIFF image may require optimization for line clarity or for color; the option chosen would depend upon a curatorial judgment of the significant properties of the image. Listing significant properties implies that the repository plans to preserve these properties across time and requires them to acceptably survive preservation action; for example, to be maintained during emulation or after format migration. It also implies that the repository would note when preservation action results in modification of significant properties. In practice, significant properties might be used as measures of preservation success, as part of quality checking the results of a preservation action or evaluating the efficacy of a preservation method. For example, if the listed significant properties are not maintained after application of a particular preservation method, it may indicate a failure of the process or that the method is not well suited to the type of material. More experience with digital preservation is needed to determine the best ways of representing significant properties in general, and of representing modification of significant properties. The semantic units included in the significantProperties container aim to provide a flexible structure for describing significant properties, allowing general types of aspects, facets or attributes of an object to be declared and to be paired with specific significant details about the object pertaining to that aspect, facet or attribute. For example, some repositories may define significant properties for objects related to facets of content, appearance, structure, behavior, and context. Examples of facet:detail pairs in this case could include: significantPropertiesType = “content” significantPropertiesValue = “all textual content and images” significantPropertiesType = “behavior” significantPropertiesValue = “editable” Other repositories may choose to describe significant properties at a more granular attribute level; for example: significantPropertiesType = “page count” significantPropertiesValue = “7” significantPropertiesType = “page width” significantPropertiesValue = “210 mm” Each facet:detail pair should be contained in a separate, repeated significantProperties container. Further work on determining and describing significant properties may yield more detailed schemes to facilitate general description. Representing modification of significant properties as a result of preservation action also requires further work. One possible way involves the use of Object and Event information: Object A has significant properties volume and timing, which are recorded as significantProperties of A. In migrated version B, the timing is modified, which is noted in the eventOutcome of the migration event. Only volume is listed as a significant property of B. - # # # # Creation / Maintenance Notes: Significant properties may pertain to all objects of a certain class; for example, the repository can decide that for all PDF files, only the content need be preserved. In other cases, for example, for media art, the significant properties may be unique to each individual object. Where values are unique, they must be supplied by the submitter or provided by the curatorial staff of the repository. + # # + # # Usage Notes: All of this semantic unit’s subunits are optional. At least one of the significantPropertiesValue and significantPropertiesExtension subunits must be present if this container is included or both may be used. Significant properties may be objective technical characteristics subjectively considered important, or subjectively determined characteristics. For example, a PDF may contain links that are not considered important and JavaScript that is considered important. Or future migrations of a TIFF image may require optimization for line clarity or for color; the option chosen would depend upon a curatorial judgment of the significant properties of the image. Listing significant properties implies that the repository plans to preserve these properties across time and requires them to acceptably survive preservation action; for example, to be maintained during emulation or after format migration. It also implies that the repository would note when preservation action results in modification of significant properties. In practice, significant properties might be used as measures of preservation success, as part of quality checking the results of a preservation action or evaluating the efficacy of a preservation method. For example, if the listed significant properties are not maintained after application of a particular preservation method, it may indicate a failure of the process or that the method is not well suited to the type of material. More experience with digital preservation is needed to determine the best ways of representing significant properties in general, and of representing modification of significant properties. The semantic units included in the significantProperties container aim to provide a flexible structure for describing significant properties, allowing general types of aspects, facets or attributes of an object to be declared and to be paired with specific significant details about the object pertaining to that aspect, facet or attribute. For example, some repositories may define significant properties for objects related to facets of content, appearance, structure, behavior, and context. Examples of facet:detail pairs in this case could include: significantPropertiesType = “content” significantPropertiesValue = “all textual content and images” significantPropertiesType = “behavior” significantPropertiesValue = “editable” Other repositories may choose to describe significant properties at a more granular attribute level; for example: significantPropertiesType = “page count” significantPropertiesValue = “7” significantPropertiesType = “page width” significantPropertiesValue = “210 mm” Each facet:detail pair should be contained in a separate, repeated significantProperties container. Further work on determining and describing significant properties may yield more detailed schemes to facilitate general description. Representing modification of significant properties as a result of preservation action also requires further work. One possible way involves the use of Object and Event information: Object A has significant properties volume and timing, which are recorded as significantProperties of A. In migrated version B, the timing is modified, which is noted in the eventOutcome of the migration event. Only volume is listed as a significant property of B. # # @return [RDF::Vocabulary::Term] # attr_reader :SignificantProperties # - # # Definition: Software required to render or use the object. - # # # # Creation / Maintenance Notes: If recording this explicitly, many different software environments may apply; for example, a particular object such as a PDF file may be viewable by several versions of several applications running under several operating systems and operating system versions. Although at least one software environment should be recorded, it is not necessary to record them all and each repository will have to make its own decisions about which software environments to record. Also, what appears to the user as a single rendering program can have many dependencies, including system utilities, runtime libraries, and so on, which each might have their own dependencies in turn. As with environment, metadata may be more efficiently managed in conjunction with a format registry either internal or external to a repository. In the absence of a global mechanism, repositories may be forced to develop their own local “registries” relating format to software environment. + # # + # # Definition: Software required to render or use the object. # # @return [RDF::Vocabulary::Term] # attr_reader :Software # - # # Usage Notes: When rights basis is a statute, statuteInformation should be provided. - # # # # Definition: Information about the statute allowing use of the object. + # # + # # Usage Notes: When rights basis is a statute, statuteInformation should be provided. # # @return [RDF::Vocabulary::Term] # attr_reader :StatuteInformation # + # # Definition: Information about how and where a file is stored in the storage system. + # # # # Rationale: It is necessary for a repository to associate the contentLocation with the storageMedium. # # # # Usage Notes: Normally there would be a single storage location and medium for an object, because an object in another location would be considered a different object. The storage composite should be repeated if there are two or more copies that are identical bit-wise and managed as a unit except for the medium on which they are stored. They must have a single objectIdentifier and be managed as a single object by the repository. Although this semantic unit is mandatory, both of its subunits are optional. At least one subunit (i.e. either contentLocation or storageMedium) must be present or both may be used. - # # - # # Definition: Information about how and where a file is stored in the storage system. # # @return [RDF::Vocabulary::Term] # attr_reader :Storage # @@ -264,258 +264,258 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :TermOfRestriction # - # # Extensions: One can use its own SKOS vocabulary to use for this property. The precondition to do this, is to link your SKOS concepts to the SKOS concepts of the id.loc.gov vocabulary. - # # # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/actionsGranted # # + # # Extensions: One can use its own SKOS vocabulary to use for this property. The precondition to do this, is to link your SKOS concepts to the SKOS concepts of the id.loc.gov vocabulary. + # # # # Definition: The action the preservation repository is allowed to take. # # @return [RDF::Vocabulary::Term] # attr_reader :hasAct # - # # Rationale: Digital provenance requires often that relationships between agents and events are documented. The role of the associated agent may need to be documented. For this, a SKOS vocabulary can be used. The LOC will publish a vocabulary at http://id.loc.gov/, denoting the agent's role. These vocabulary will publish the concepts also as subproperties to the linkingAgent property, for denoting the role of the agent in the event or rightsstatement. - # # # # Definition: link to the associated Agent. + # # + # # Rationale: Digital provenance requires often that relationships between agents and events are documented. The role of the associated agent may need to be documented. For this, a SKOS vocabulary can be used. The LOC will publish a vocabulary at http://id.loc.gov/, denoting the agent's role. These vocabulary will publish the concepts also as subproperties to the linkingAgent property, for denoting the role of the agent in the event or rightsstatement. # # @return [RDF::Vocabulary::Term] # attr_reader :hasAgent # - # # Rationale: This semantic unit provides a more reader-friendly version of the agent identified by the agentIdentifier. - # # # # Usage Note: The value is not necessarily unique. # # # # Definition: A text string which could be used in addition to agentIdentifier to identify an agent. # # # # Examples: Erik Owens, Pc + # # + # # Rationale: This semantic unit provides a more reader-friendly version of the agent identified by the agentIdentifier. # # @return [RDF::Vocabulary::Term] # attr_reader :hasAgentName # - # # Definition: Additional information about the agent. - # # # # Rationale: Additional information may be needed to describe or disambiguate the agent. + # # + # # Definition: Additional information about the agent. # # @return [RDF::Vocabulary::Term] # attr_reader :hasAgentNote # - # # Extensions: One can use its own SKOS vocabulary to use for this property. The precondition to do this, is to link your SKOS concepts to the SKOS concepts of the id.loc.gov vocabulary. - # # # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/agentType # # # # Definition: A high-level characterization of the type of agent. + # # + # # Extensions: One can use its own SKOS vocabulary to use for this property. The precondition to do this, is to link your SKOS concepts to the SKOS concepts of the id.loc.gov vocabulary. # # @return [RDF::Vocabulary::Term] # attr_reader :hasAgentType # # # @return [RDF::Vocabulary::Term] # attr_reader :hasApplicableDates # - # # Usage Notes: A file or bitstream can be subject to multiple encodings that must be decoded in reverse order (highest to lowest). For example, file A may be compressed to create file B, which is encrypted to create file C. To recreate a copy of the base file A, one would have to unencrypt file C to create file B and then uncompress file B to create file A. A compositionLevel of zero indicates that the object is a base object and not subject to further decoding, while a level of 1 or higher indicates that one or more decodings must be applied. Numbering goes lowest to highest (first encoded = 0). 0 is base object; 1-n are subsequent encodings. Use 0 as the default if there is only one compositionLevel. When multiple file objects are bundled together as filestreams within a package file object (e.g., a ZIP file), the individual filestream objects are not composition levels of the package file object. They should be considered separate objects, each with their own composition levels. For example, two encrypted files zipped together and stored in an archive as one file object would be described as three separate objects, each with its own associated metadata. The storage location of the two inner objects would point to the ZIP file, but the ZIP file itself would have only a single composition level (of zero) whose format would be “zip.” - # # - # # Rationale: A file or bitstream can be encoded with compression, encryption, etc., or bundled with other files or bitstreams into larger packages. Knowing the order in which these actions are taken is important if the original object or objects must be recovered. - # # # # Examples: 0, 1, 2 # # - # # Definition: An indication of whether the object is subject to one or more processes of decoding or unbundling. + # # Data Constraints: Non-negative integers. + # # + # # Usage Notes: A file or bitstream can be subject to multiple encodings that must be decoded in reverse order (highest to lowest). For example, file A may be compressed to create file B, which is encrypted to create file C. To recreate a copy of the base file A, one would have to unencrypt file C to create file B and then uncompress file B to create file A. A compositionLevel of zero indicates that the object is a base object and not subject to further decoding, while a level of 1 or higher indicates that one or more decodings must be applied. Numbering goes lowest to highest (first encoded = 0). 0 is base object; 1-n are subsequent encodings. Use 0 as the default if there is only one compositionLevel. When multiple file objects are bundled together as filestreams within a package file object (e.g., a ZIP file), the individual filestream objects are not composition levels of the package file object. They should be considered separate objects, each with their own composition levels. For example, two encrypted files zipped together and stored in an archive as one file object would be described as three separate objects, each with its own associated metadata. The storage location of the two inner objects would point to the ZIP file, but the ZIP file itself would have only a single composition level (of zero) whose format would be “zip.” # # # # Creation / Maintenance Notes: Composition level will generally be supplied by the repository, which should attempt to supply this value automatically. If the object was created by the repository, the creating routine knows the composition level and can supply this metadata. If the object is being ingested by the repository, repository programs will have to attempt to identify the composition level from the object itself or from externally supplied metadata. # # - # # Data Constraints: Non-negative integers. + # # Definition: An indication of whether the object is subject to one or more processes of decoding or unbundling. + # # + # # Rationale: A file or bitstream can be encoded with compression, encryption, etc., or bundled with other files or bitstreams into larger packages. Knowing the order in which these actions are taken is important if the original object or objects must be recovered. # # @return [RDF::Vocabulary::Term] # attr_reader :hasCompositionLevel # # # @return [RDF::Vocabulary::Term] # attr_reader :hasContentLocation # - # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/contentLocationType + # # Definition: The means of referencing the location of the content. # # # # Rationale: To understand the meaning of the value it is necessary to know what location scheme is used. # # # # Extensions: One can use its own SKOS vocabulary to use for this property. The precondition to do this, is to link your SKOS concepts to the SKOS concepts of the id.loc.gov vocabulary. # # - # # Definition: The means of referencing the location of the content. + # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/contentLocationType # # @return [RDF::Vocabulary::Term] # attr_reader :hasContentLocationType # - # # Definition: The reference to the location of the content used by the storage system. + # # Examples: http://wwasearch.loc.gov/107th/200212107035/http://house.gov/langevin/ (file), c:\apache2\htdocs\index.html (file), 64 [offset from start of file c:\apache2\htdocs\image\logo.gif] (bitstream) # # # # Usage Notes: This could be a fully qualified path and filename, or the information used by a resolution system (e.g., a handle) or the native information used by a storage management system. For a bitstream or filestream, this would probably be the reference point and offset of the starting position of the bitstream. It is up to the repository to determine the level of granularity that should be recorded. # # - # # Examples: http://wwasearch.loc.gov/107th/200212107035/http://house.gov/langevin/ (file), c:\apache2\htdocs\index.html (file), 64 [offset from start of file c:\apache2\htdocs\image\logo.gif] (bitstream) + # # Definition: The reference to the location of the content used by the storage system. # # @return [RDF::Vocabulary::Term] # attr_reader :hasContentLocationValue # # # Data Constraint: Values should be taken from ISO 3166. # # - # # Definition: The country whose copyright laws apply. - # # # # Rationale: Copyright law can vary from country to country. # # # # Examples: us, de, be + # # + # # Definition: The country whose copyright laws apply. # # @return [RDF::Vocabulary::Term] # attr_reader :hasCopyrightJurisdiction # - # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/copyrightStatus - # # # # Definition: A coded designation for the copyright status of the object at the time the rights statement is recorded. # # + # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/copyrightStatus + # # # # Extensions: One can use its own SKOS vocabulary to use for this property. The precondition to do this, is to link your SKOS concepts to the SKOS concepts of the id.loc.gov vocabulary. # # @return [RDF::Vocabulary::Term] # attr_reader :hasCopyrightStatus # - # # Example: 2001-10-26T19:32:52+00:00 + # # Data Constraint: To aid machine processing, value should use a structured form: xsd:dateTime # # # # Definition: The date that the copyright status recorded in copyrightStatus was determined. # # - # # Data Constraint: To aid machine processing, value should use a structured form: xsd:dateTime + # # Example: 2001-10-26T19:32:52+00:00 # # @return [RDF::Vocabulary::Term] # attr_reader :hasCopyrightStatusDeterminationDate # # # @return [RDF::Vocabulary::Term] # attr_reader :hasCreatingApplication # - # # Definition: A designation for the name of the software program that created the object. + # # Example: MSWord # # # # Usage Notes: The creatingApplication is the application that created the object in its current format, not the application that created the copy written to storage. For example, if a document is created by Microsoft Word and subsequently copied to archive storage by a repository’s Ingest program, the creatingApplication is Word, not the Ingest program. # # - # # Example: MSWord + # # Definition: A designation for the name of the software program that created the object. # # @return [RDF::Vocabulary::Term] # attr_reader :hasCreatingApplicationName # - # # Definition: The version of the software program that created the object. - # # # # Example: 2000 + # # + # # Definition: The version of the software program that created the object. # # @return [RDF::Vocabulary::Term] # attr_reader :hasCreatingApplicationVersion # - # # Example: 2001-10-26T19:32:52+00:00 - # # - # # Definition: The actual or approximate date and time the object was created. + # # Data Constraint: To aid machine processing, value should use a structured form: xsd:dateTime # # # # Usage Notes: Use the most precise date available. This is the date the object was created by the creating application, not the date any copy was made externally or by the repository. For example, if a file is created by Microsoft Word in 2001 and two copies are made in 2003, the dateCreatedByApplication of all three files is 2001. The date a file is written to storage can be recorded as an Event. If the object itself contains internal creation and modification dates, the modification date should be used as dateCreatedByApplication. If the application is a Web harvester capturing an object at a point of time, use for date captured. # # - # # Data Constraint: To aid machine processing, value should use a structured form: xsd:dateTime + # # Example: 2001-10-26T19:32:52+00:00 + # # + # # Definition: The actual or approximate date and time the object was created. # # @return [RDF::Vocabulary::Term] # attr_reader :hasDateCreatedByApplication # # # @return [RDF::Vocabulary::Term] # attr_reader :hasDependency # + # # Definition: A designation for a component or associated file needed by the representation or file. + # # # # Rationale: It may not be self-evident from the dependencyIdentifier what the name of the object actually is. # # # # Example: Additional Element Set for Language Corpora - # # - # # Definition: A designation for a component or associated file needed by the representation or file. # # @return [RDF::Vocabulary::Term] # attr_reader :hasDependencyName # + # # Data Constraint: To aid machine processing, value should use a structured form: xsd:dateTime + # # # # Usage Notes: Use “0000-00-00T00:00:00+00:00” for an open ended term of grant. Omit endDate if the ending date is unknown or the permission statement applies to many objects with different end dates. # # # # Definition: The ending date of the permission granted. - # # - # # Data Constraint: To aid machine processing, value should use a structured form: xsd:dateTime # # @return [RDF::Vocabulary::Term] # attr_reader :hasEndDate # # # @return [RDF::Vocabulary::Term] # attr_reader :hasEnvironment # - # # Rationale: If multiple environments are described, this element can help to distinguish among them. - # # # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/environmentCharacteristic # # - # # Definition: An assessment of the extent to which the described environment supports its purpose. + # # Rationale: If multiple environments are described, this element can help to distinguish among them. # # # # Extensions: One can use its own SKOS vocabulary to use for this property. The precondition to do this, is to link your SKOS concepts to the SKOS concepts of the id.loc.gov vocabulary. + # # + # # Definition: An assessment of the extent to which the described environment supports its purpose. # # @return [RDF::Vocabulary::Term] # attr_reader :hasEnvironmentCharacteristic # - # # Rationale: There may be a need to give a textual description of the environment for additional explanation. + # # Definition: Additional information about the environment. # # - # # Example: This environment assumes that the PDF will be stored locally and used with a standalone PDF reader. + # # Rationale: There may be a need to give a textual description of the environment for additional explanation. # # # # Usage Notes: This note could be used to record the context of the environment information. For example, if a file can be rendered through a PC client application or through a browser with a plug-in, this note could be used to identify which situation applies. The note should not be used for a textual description of environment information recorded more rigorously elsewhere. # # - # # Definition: Additional information about the environment. + # # Example: This environment assumes that the PDF will be stored locally and used with a standalone PDF reader. # # @return [RDF::Vocabulary::Term] # attr_reader :hasEnvironmentNote # - # # Definition: The use(s) supported by the specified environment. - # # - # # Rationale: Different environments can support different uses of objects. For example, the environment needed to edit and modify a file can be quite different than the environment needed to render it. + # # Extensions: One can use its own SKOS vocabulary to use for this property. The precondition to do this, is to link your SKOS concepts to the SKOS concepts of the id.loc.gov vocabulary. # # # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/environmentPurpose # # - # # Extensions: One can use its own SKOS vocabulary to use for this property. The precondition to do this, is to link your SKOS concepts to the SKOS concepts of the id.loc.gov vocabulary. + # # Definition: The use(s) supported by the specified environment. + # # + # # Rationale: Different environments can support different uses of objects. For example, the environment needed to edit and modify a file can be quite different than the environment needed to render it. # # @return [RDF::Vocabulary::Term] # attr_reader :hasEnvironmentPurpose # - # # Definition: The event associated with the object or an agent. - # # # # Usage Notes: Use to link to events that are not associated with relationships between objects, such as format validation, virus checking, etc. + # # + # # Definition: The event associated with the object or an agent. # # @return [RDF::Vocabulary::Term] # attr_reader :hasEvent # - # # Usage Notes: Recommended practice is to record the most specific time possible and to designate the time zone. - # # - # # Example: 2001-10-26T19:32:52+00:00 + # # Data Constraint: To aid machine processing, value should use a structured form: xsd:dateTime # # # # Definition: The single date and time, or date and time range, at or during which the event occurred. # # - # # Data Constraint: To aid machine processing, value should use a structured form: xsd:dateTime + # # Example: 2001-10-26T19:32:52+00:00 + # # + # # Usage Notes: Recommended practice is to record the most specific time possible and to designate the time zone. # # @return [RDF::Vocabulary::Term] # attr_reader :hasEventDateTime # - # # Usage Notes: eventDetail is not intended to be processed by machine. It may record any information about an event and/or point to information stored elsewhere. + # # Definition: Additional information about the event. # # # # Examples: Object permanently withdrawn by request of Caroline Hunt, Program=“MIGJP2JP2K”; version=“2.2” # # - # # Definition: Additional information about the event. + # # Usage Notes: eventDetail is not intended to be processed by machine. It may record any information about an event and/or point to information stored elsewhere. # # @return [RDF::Vocabulary::Term] # attr_reader :hasEventDetail # - # # Rationale: A coded way of representing the outcome of an event may be useful for machine processing and reporting. If, for example, a fixity check fails, the event record provides both an actionable and a permanent record. - # # # # Usage Notes: Recommended practice is to use a controlled vocabulary that a system can act upon automatically. More detail about the outcome may be recorded in eventOutcomeDetail. Recommended practice is to define events with sufficient granularity that each event has a single outcome. # # - # # Examples: 00 [a code meaning “action successfully completed”], CV-01 [a code meaning “checksum validated”] + # # Rationale: A coded way of representing the outcome of an event may be useful for machine processing and reporting. If, for example, a fixity check fails, the event record provides both an actionable and a permanent record. # # # # Data Constraint: Value should be taken from a controlled vocabulary. # # # # Definition: A categorization of the overall result of the event in terms of success, partial success, or failure. + # # + # # Examples: 00 [a code meaning “action successfully completed”], CV-01 [a code meaning “checksum validated”] # # @return [RDF::Vocabulary::Term] # attr_reader :hasEventOutcome # # # @return [RDF::Vocabulary::Term] # attr_reader :hasEventOutcomeDetail # + # # Definition: A detailed description of the result or product of the event in textual form. + # # # # Rationale: Additional information in textual form may be needed about the outcome of the event. # # # # Examples: LZW compressed file, Non-standard tags found in header - # # - # # Definition: A detailed description of the result or product of the event in textual form. # # @return [RDF::Vocabulary::Term] # attr_reader :hasEventOutcomeDetailNote # # # @return [RDF::Vocabulary::Term] # attr_reader :hasEventOutcomeInformation # - # # This propety links a Event instance to an Agent instance. Via this property a distinction can be made in the linkingAgent properties based on the domain. - # # # # Extensions: One can extend this property to use more fine grained properties by defining the fine grained properties as subproperties of this property. + # # + # # This propety links a Event instance to an Agent instance. Via this property a distinction can be made in the linkingAgent properties based on the domain. # # @return [RDF::Vocabulary::Term] # attr_reader :hasEventRelatedAgent # - # # Extensions: One can extend this property to use more fine grained properties by defining the fine grained properties as subproperties of this property. - # # # # Rationale: Digital provenance often requires that relationships between objects and events are documented. # # + # # Extensions: One can extend this property to use more fine grained properties by defining the fine grained properties as subproperties of this property. + # # # # Definition: Information about an object associated with an event. # # @return [RDF::Vocabulary::Term] # attr_reader :hasEventRelatedObject # # # Rationale: Categorizing events will aid the preservation repository in machine processing of event information, particularly in reporting. # # + # # Definition: A categorization of the nature of the event. + # # # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/eventType # # # # Extensions: One can use its own SKOS vocabulary to use for this property. The precondition to do this, is to link your SKOS concepts to the SKOS concepts of the id.loc.gov vocabulary. - # # - # # Definition: A categorization of the nature of the event. # # @return [RDF::Vocabulary::Term] # attr_reader :hasEventType # @@ -528,22 +528,22 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasFormatDesignation # - # # Examples: Text/sgml, image/tiff/geotiff, Adobe PDF, DES, PGP, base64, unknown, LaTex + # # Definition: A designation of the format of the file or bitstream. # # # # Data Constraint: Value should be taken from a controlled vocabulary. # # - # # Definition: A designation of the format of the file or bitstream. + # # Examples: Text/sgml, image/tiff/geotiff, Adobe PDF, DES, PGP, base64, unknown, LaTex # # # # Usage Notes: For unidentified formats, formatName may be recorded as “unknown”. # # @return [RDF::Vocabulary::Term] # attr_reader :hasFormatName # + # # Rationale: Qualifying information may be needed to supplement format designation and registry information or record a status for identification. + # # # # Usage Notes: The formatNote may contain free text, a reference pointer, or a value from a controlled list. # # # # Definition: Additional information about format. # # - # # Rationale: Qualifying information may be needed to supplement format designation and registry information or record a status for identification. - # # # # Examples: tentative identification, disjunction, multiple format identifications found # # @return [RDF::Vocabulary::Term] # attr_reader :hasFormatNote @@ -565,51 +565,51 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasFormatRegistryName # - # # Rationale: The same format may be defined in different registries for different purposes. For example, one registry may give detailed format specifications while another has profile information. If multiple registries are recorded, this semantic unit can be used to distinguish among them. + # # Definition: The purpose or expected use of the registry. # # # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/formatRegistryRole # # - # # Extensions: One can use its own SKOS vocabulary to use for this property. The precondition to do this, is to link your SKOS concepts to the SKOS concepts of the id.loc.gov vocabulary. + # # Rationale: The same format may be defined in different registries for different purposes. For example, one registry may give detailed format specifications while another has profile information. If multiple registries are recorded, this semantic unit can be used to distinguish among them. # # - # # Definition: The purpose or expected use of the registry. + # # Extensions: One can use its own SKOS vocabulary to use for this property. The precondition to do this, is to link your SKOS concepts to the SKOS concepts of the id.loc.gov vocabulary. # # @return [RDF::Vocabulary::Term] # attr_reader :hasFormatRegistryRole # # # Examples: 6.0, 2003 # # - # # Definition: The version of the format named in formatName. + # # Usage Notes: If the format is versioned, formatVersion should be recorded. It can be either a numeric or chronological designation. # # # # Rationale: Many authority lists of format names are not granular enough to indicate version, for example, MIME Media types. # # - # # Usage Notes: If the format is versioned, formatVersion should be recorded. It can be either a numeric or chronological designation. + # # Definition: The version of the format named in formatName. # # @return [RDF::Vocabulary::Term] # attr_reader :hasFormatVersion # # # @return [RDF::Vocabulary::Term] # attr_reader :hasHardware # - # # Usage Notes: Include manufacturer when this helps to identify or disambiguate the product. Include version for firmware or other components where that information is pertinent. - # # # # Examples: Intel Pentium III, 1 GB DRAM, Windows XPcompatible joystick # # # # Definition: Manufacturer, model, and version (if applicable) of the hardware. + # # + # # Usage Notes: Include manufacturer when this helps to identify or disambiguate the product. Include version for firmware or other components where that information is pertinent. # # @return [RDF::Vocabulary::Term] # attr_reader :hasHardwareName # - # # Usage Notes: This could be an identifier or URI used to point to hardware documentation. - # # # # Definition: Additional requirements or instructions related to the hardware referenced in hwName. # # + # # Usage Notes: This could be an identifier or URI used to point to hardware documentation. + # # # # Examples: 32MB minimum, Required RAM for Apache is unknown # # # # Rationale: For hardware, the amount of computing resource needed (such as memory, storage, processor speed, etc.) may need to be documented. In addition, more detailed instructions may be needed to install and/or operate the hardware. # # @return [RDF::Vocabulary::Term] # attr_reader :hasHardwareOtherInformation # - # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/hardwareType - # # # # Definition: Class or category of the hardware. # # + # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/hardwareType + # # # # Extensions: One can use its own SKOS vocabulary to use for this property. The precondition to do this, is to link your SKOS concepts to the SKOS concepts of the id.loc.gov vocabulary. # # @return [RDF::Vocabulary::Term] # attr_reader :hasHardwareType @@ -617,45 +617,45 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasIdentifier # - # # Usage Notes: The type of the identifier may be implicit within the repository as long it can be explicitly communicated when the item is disseminated outside of it. - # # - # # Rationale: Identifier values cannot be assumed to be unique across domains. The combination of identifierType and identifierValue should ensure uniqueness. - # # # # Data Constraint: Value should be taken from controlled vocabulary. # # # # Definition: A designation of the domain within which the identifier is unique. # # # # Examples: DLC, DRS, hdl:4263537 + # # + # # Rationale: Identifier values cannot be assumed to be unique across domains. The combination of identifierType and identifierValue should ensure uniqueness. + # # + # # Usage Notes: The type of the identifier may be implicit within the repository as long it can be explicitly communicated when the item is disseminated outside of it. # # @return [RDF::Vocabulary::Term] # attr_reader :hasIdentifierType # - # # Defnition: The value of the Identifier. - # # # # Examples: 0000000312 (Representation), IU2440 (File), WAC1943.56 (File), http://nrs.harvard.edu/urn-3:FHCL.Loeb:sal (File), IU2440-1 (Bitstream) + # # + # # Defnition: The value of the Identifier. # # @return [RDF::Vocabulary::Term] # attr_reader :hasIdentifierValue # + # # Example: [DES decryption key] + # # # # Usage Notes: The key should be provided if known. However, it is not advisable to actually store the inhibitorKey in plain text in an unsecure database. # # # # Definition: The decryption key or password. - # # - # # Example: [DES decryption key] # # @return [RDF::Vocabulary::Term] # attr_reader :hasInhibitorKey # - # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/inhibitorTarget - # # # # Extensions: One can use its own SKOS vocabulary to use for this property. The precondition to do this, is to link your SKOS concepts to the SKOS concepts of the id.loc.gov vocabulary. # # + # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/inhibitorTarget + # # # # Definition: The content or function protected by the inhibitor. # # @return [RDF::Vocabulary::Term] # attr_reader :hasInhibitorTarget # - # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/inhibitorType - # # # # Definition: The inhibitor method employed. # # # # Extensions: One can use its own SKOS vocabulary to use for this property. The precondition to do this, is to link your SKOS concepts to the SKOS concepts of the id.loc.gov vocabulary. + # # + # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/inhibitorType # # @return [RDF::Vocabulary::Term] # attr_reader :hasInhibitorType # @@ -671,58 +671,58 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasKeyInformation # - # # Usage Notes: This could contain the actual text of the license or agreement or a paraphrase or summary. - # # # # Definition: Text describing the license or agreement by which permission was granted. + # # + # # Usage Notes: This could contain the actual text of the license or agreement or a paraphrase or summary. # # @return [RDF::Vocabulary::Term] # attr_reader :hasLicenseTerms # # # Definition: The output of the message digest algorithm. # # - # # Rationale: This must be stored so that it can be compared in future fixity checks. - # # # # Example: 7c9b35da4f2ebd436f1cf88e5a39b3a257edf4a22be3c955ac49da2e2107b67a1924419563 + # # + # # Rationale: This must be stored so that it can be compared in future fixity checks. # # @return [RDF::Vocabulary::Term] # attr_reader :hasMessageDigest # - # # Definition: The specific algorithm used to construct the message digest for the digital object. - # # # # Extensions: One can use its own SKOS vocabulary to use for this property. The precondition to do this, is to link your SKOS concepts to the SKOS concepts of the id.loc.gov vocabulary. # # + # # Definition: The specific algorithm used to construct the message digest for the digital object. + # # # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/cryptographicHashFunctions # # @return [RDF::Vocabulary::Term] # attr_reader :hasMessageDigestAlgorithm # - # # Rationale: A preservation repository may ingest files that have had message digests calculated by the submitter; checking these ensures that the file as received is the same as the file as sent. The repository may also ingest files that do not have message digests, and so must calculate the initial value upon ingest. It can be useful to know who calculated the initial value of the message digest. + # # Examples: DRS, A0000978 # # # # Usage Notes: The originator of the message digest could be represented by a string representing the agent (e.g., “NRS” referring to the archive itself) or a pointer to an agent description (e.g., “A0000987” taken here to be an agentIdentifierValue). # # - # # Examples: DRS, A0000978 - # # - # # Definition: The agent that created the original message digest that is compared in a fixity check. + # # Rationale: A preservation repository may ingest files that have had message digests calculated by the submitter; checking these ensures that the file as received is the same as the file as sent. The repository may also ingest files that do not have message digests, and so must calculate the initial value upon ingest. It can be useful to know who calculated the initial value of the message digest. # # # # Creation / Maintenance Notes: If the calculation of the initial message digest is treated by the repository as an Event, this information could be obtained from an Event record. + # # + # # Definition: The agent that created the original message digest that is compared in a fixity check. # # @return [RDF::Vocabulary::Term] # attr_reader :hasMessageDigestOriginator # - # # Definition: Information about an object associated with an event or rightsstatement. + # # Extensions: One can extend this property to use more fine grained properties by defining the fine grained properties as subproperties of this property. # # # # Rationale: Digital provenance often requires that relationships between objects and events are documented. / Rights statements must be associated with the objects to which they pertain, either by linking from the rights statement to the object(s) or by linking from the object(s) to the rights statement. This provides the mechanism for the link from the rights statement to an object. For denoting the role of the object, when related to an event,one can extend this ontology be defining your own subproperties, such as those given by http://id.loc.gov/vocabulary/preservation/eventRelatedObjectRole. # # - # # Extensions: One can extend this property to use more fine grained properties by defining the fine grained properties as subproperties of this property. + # # Definition: Information about an object associated with an event or rightsstatement. # # @return [RDF::Vocabulary::Term] # attr_reader :hasObject # # # @return [RDF::Vocabulary::Term] # attr_reader :hasObjectCharacteristics # - # # Usage Notes: This is the name of the object as designated in the Submission Information Package (SIP). The object may have other names in different contexts. When two repositories are exchanging content, it would be important for the receiving repository to know and record the name of the representation at the originating repository. In the case of representations, this may be a directory name. + # # Creation / Maintenance Notes: This value would always be supplied to the repository by the submitter or harvesting application. How much of the file path to preserve would be up to the repository. # # # # Definition: The name of the object as submitted to or harvested by the repository, before any renaming by the repository. # # # # Rationale: The name used within the preservation repository may not be known outside of the repository. A depositor might need to request a file by its original name. Also, the repository may need to reconstruct internal links for dissemination. # # - # # Creation / Maintenance Notes: This value would always be supplied to the repository by the submitter or harvesting application. How much of the file path to preserve would be up to the repository. + # # Usage Notes: This is the name of the object as designated in the Submission Information Package (SIP). The object may have other names in different contexts. When two repositories are exchanging content, it would be important for the receiving repository to know and record the name of the representation at the originating repository. In the case of representations, this may be a directory name. # # # # Example: N419.pdf # # @return [RDF::Vocabulary::Term] @@ -731,30 +731,30 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasPreservationLevel # - # # Examples: 2001-10-26T19:32:52+00:00 - # # - # # Rationale: The preservationLevel applicable to an object is expected to be reviewed and changed over time, in response to changes in repository preservation requirements, policies, or capabilities relevant to the object. The date that the current preservationLevelValue was assigned aids review of decisions. + # # Data Constraint: To aid machine processing, value should use a structured form: xsd:dateTime # # # # Definition: The date, or date and time, when a particular preservationLevelValue was assigned to the object. # # - # # Data Constraint: To aid machine processing, value should use a structured form: xsd:dateTime + # # Rationale: The preservationLevel applicable to an object is expected to be reviewed and changed over time, in response to changes in repository preservation requirements, policies, or capabilities relevant to the object. The date that the current preservationLevelValue was assigned aids review of decisions. + # # + # # Examples: 2001-10-26T19:32:52+00:00 # # @return [RDF::Vocabulary::Term] # attr_reader :hasPreservationLevelDateAssigned # - # # Examples: user pays, legislation, defective file, bit-level preservation only available for this format - # # # # Usage Notes: This optional semantic unit records the reason for applying the preservationLevelValue. This information can be particularly important when the assigned preservationLevelValue differs from usual repository policy. For example, a repository may normally assign a preservationLevelValue of “full preservation” for JPEG2000 files, but detects that a particular file is defective. This may mean that the repository’s preservation strategy for JPEG2000 may not be effective for this particular file, so the repository may assign a preservationLevelValue of “bit-level preservation” to this file, recording “defective file” as the rationale. Similarly, legislative requirements or contractual agreements may require a higher level of preservation to be assigned to a particular object than would be assigned to that class of object according to usual policy. In this case, the rationale for the assignment may be recorded as “legislation” or “user pays”, for example. preservationLevelRationale may be repeated if more than one reason needs to be recorded. # # # # Definition: The reason a particular preservationLevelValue was applied to the object. # # + # # Examples: user pays, legislation, defective file, bit-level preservation only available for this format + # # # # Rationale: Application of a particular preservationLevelValue may require justification, especially if it differs from that usually applied according to repository policy. # # @return [RDF::Vocabulary::Term] # attr_reader :hasPreservationLevelRationale # - # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/preservationLevelRole - # # # # Definition: A value indicating the context in which a set of preservation options is applicable. # # + # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/preservationLevelRole + # # # # Rationale: Repositories may assign preservationLevelValues in different contexts which must be differentiated, and may need to record more than one context. # # # # Extensions: One can use its own SKOS vocabulary to use for this property. The precondition to do this, is to link your SKOS concepts to the SKOS concepts of the id.loc.gov vocabulary. @@ -763,15 +763,15 @@ module RDF::Vocab # # # Usage Notes: Only one preservationLevelValue may be recorded per preservationLevel container. If a further preservationLevelValue applies to the object in a different context, a separate preservationLevel container should be repeated. # # - # # Rationale: Some preservation repositories will offer multiple preservation options depending on factors such as the value or uniqueness of the material, the “preservability” of the format, the amount the customer is willing to pay, etc. - # # # # Examples: bit-level, full, fully supported with future migrations (File), 0 # # # # Data Constraint: Value should be taken from a controlled vocabulary. # # - # # Definition: A value indicating the set of preservation functions expected to be applied to the object. + # # Rationale: Some preservation repositories will offer multiple preservation options depending on factors such as the value or uniqueness of the material, the “preservability” of the format, the amount the customer is willing to pay, etc. # # # # Creation / Maintenance Notes: The preservation level may be assigned by the repository or requested by the depositor and submitted as metadata. + # # + # # Definition: A value indicating the set of preservation functions expected to be applied to the object. # # @return [RDF::Vocabulary::Term] # attr_reader :hasPreservationLevelValue # @@ -779,9 +779,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasRelatedObject # - # # Definition: The order of the related object relative to other objects with the same type of relationship. - # # # # Rationale: This semantic unit is particularly useful for structural relationships. In order to reconstruct a representation, it may be necessary to know the order of components with sibling or part-whole relationships. For example, to render a page-image book, it is necessary to know the order of files representing pages. + # # + # # Definition: The order of the related object relative to other objects with the same type of relationship. # # @return [RDF::Vocabulary::Term] # attr_reader :hasRelatedObjectSequence # @@ -789,17 +789,17 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasRelatedStatuteInformation # - # # The LOC will provide a SKOS vocabulary, where the concepts can also be used as object properties at http://id.loc.gov/. These relationships will capture the relationship type and subtype. One can define its own relationships, but for interoperability reasons, these should be linked to or made a subproperty of the properties of the LOC vocabulary. - # # # # Extensions: One can extend this property to use more fine grained properties by defining the fine grained properties as subproperties of this property. # # + # # The LOC will provide a SKOS vocabulary, where the concepts can also be used as object properties at http://id.loc.gov/. These relationships will capture the relationship type and subtype. One can define its own relationships, but for interoperability reasons, these should be linked to or made a subproperty of the properties of the LOC vocabulary. + # # # # Definition: This property links one object to one or more other objects. # # @return [RDF::Vocabulary::Term] # attr_reader :hasRelationship # - # # Definition: A condition or limitation on the act. - # # # # Examples: No more than three, Allowed only after one year of archival retention has elapsed, Rightsholder must be notified after completion of act + # # + # # Definition: A condition or limitation on the act. # # @return [RDF::Vocabulary::Term] # attr_reader :hasRestriction # @@ -846,21 +846,21 @@ module RDF::Vocab # # # Definition: The encoding used for the values of signatureValue, keyInformation. # # - # # Rationale: These values cannot be interpreted correctly if the encoding is unknown. - # # # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/signatureEncoding # # + # # Rationale: These values cannot be interpreted correctly if the encoding is unknown. + # # # # Extensions: One can use its own SKOS vocabulary to use for this property. The precondition to do this, is to link your SKOS concepts to the SKOS concepts of the id.loc.gov vocabulary. # # @return [RDF::Vocabulary::Term] # attr_reader :hasSignatureEncoding # - # # Definition: A designation for the encryption and hash algorithms used for signature generation. - # # # # Rationale: The same algorithms must be used for signature validation. # # # # Data Constraint: Values are taken from a SKOS vocabulary # # # # Extensions: One can use its own SKOS vocabulary to use for this property. The precondition to do this, is to link your SKOS concepts to the SKOS concepts of the id.loc.gov vocabulary. + # # + # # Definition: A designation for the encryption and hash algorithms used for signature generation. # # @return [RDF::Vocabulary::Term] # attr_reader :hasSignatureMethod # @@ -872,23 +872,23 @@ module RDF::Vocab # # # Definition: The operations to be performed in order to validate the digital signature. # # - # # Rationale: The repository should not assume that the procedure for validating any particular signature will be known many years in the future without documentation. - # # # # Usage Notes: This may include the canonicalization method used before calculating the message digest, if the object was normalized before signing. This value could also be a pointer to archive documentation. + # # + # # Rationale: The repository should not assume that the procedure for validating any particular signature will be known many years in the future without documentation. # # @return [RDF::Vocabulary::Term] # attr_reader :hasSignatureValidationRules # - # # Example: juS5RhJ884qoFR8flVXd/rbrSDVGn40CapgB7qeQiT+rr0NekEQ6BHhUA8dT3+BCTBUQI0dBjlml9lwzENXvS83zRECjzXbMRTUtVZiPZG2pqKPnL2YU3A9645UCjTXU+jgFumv7k78hieAGDzNci+PQ9KRmm//icT7JaYztgt4= - # # # # Definition: The digital signature; a value generated from the application of a private key to a message digest. + # # + # # Example: juS5RhJ884qoFR8flVXd/rbrSDVGn40CapgB7qeQiT+rr0NekEQ6BHhUA8dT3+BCTBUQI0dBjlml9lwzENXvS83zRECjzXbMRTUtVZiPZG2pqKPnL2YU3A9645UCjTXU+jgFumv7k78hieAGDzNci+PQ9KRmm//icT7JaYztgt4= # # @return [RDF::Vocabulary::Term] # attr_reader :hasSignatureValue # - # # Rationale: The signer might also be carried in the keyInformation, but it can be accessed more conveniently if recorded here. + # # Usage Notes: If the signer is an Agent known to the repository, this property can directly link to this agent. The consequence is punning: a datatype property and object property with the same name, i.e., :signer # # # # Definition: The individual, institution, or authority responsible for generating the signature. # # - # # Usage Notes: If the signer is an Agent known to the repository, this property can directly link to this agent. The consequence is punning: a datatype property and object property with the same name, i.e., :signer + # # Rationale: The signer might also be carried in the keyInformation, but it can be accessed more conveniently if recorded here. # # @return [RDF::Vocabulary::Term] # attr_reader :hasSigner # @@ -897,44 +897,44 @@ module RDF::Vocab # # # Definition: The aspect, facet, or attribute of an object about which significant properties are being described. # # - # # Examples: content, structure, behavior, page count, page width, typeface, hyperlinks (representation), image count (representation), color space [for an embedded image] (bitstream) + # # Usage Notes: This semantic unit is optional and may be used as part of a facet:detail pair with significantPropertiesValue. # # # # Rationale: Repositories may choose to describe significant properties based on a particular aspect or attribute of an object. # # - # # Usage Notes: This semantic unit is optional and may be used as part of a facet:detail pair with significantPropertiesValue. + # # Examples: content, structure, behavior, page count, page width, typeface, hyperlinks (representation), image count (representation), color space [for an embedded image] (bitstream) # # @return [RDF::Vocabulary::Term] # attr_reader :hasSignificantPropertiesType # - # # Definition: Description of the characteristics of a particular object subjectively determined to be important to maintain through preservation actions. - # # - # # Usage Notes: If facet:detail pairs are used, the content of significantPropertiesValue should describe the significant properties of object relevant to the aspect, facet, or attribute declared in the significantPropertiesType with which it is paired. If facet:detail pairs are not used, significantPropertiesValue may be used to freely describe any characteristic of an object. significantPropertiesValue is not repeatable. Multiple significant properties should be described in separate, repeated significantProperties container units. + # # Rationale: Repositories may choose to describe significant properties based on a particular aspect or attribute of an object. # # # # Examples: [For a Web page containing animation that is not considered essential] Content only, [For detail associated with a significantPropertiesType of "behavior"] Hyperlinks traversable, [For a Word document with embedded links that are not considered essential] Content only, [For detail associated with significantPropertiesType of "behavior"] Editable, [For detail associated with a significantPropertiesType of "page width"] 210 mm, [For a PDF with an embedded graph, where the lines' color determines the lines' meaning] Color, [For detail associated with a significantPropertiesType of "appearance"] Color # # - # # Rationale: Repositories may choose to describe significant properties based on a particular aspect or attribute of an object. + # # Usage Notes: If facet:detail pairs are used, the content of significantPropertiesValue should describe the significant properties of object relevant to the aspect, facet, or attribute declared in the significantPropertiesType with which it is paired. If facet:detail pairs are not used, significantPropertiesValue may be used to freely describe any characteristic of an object. significantPropertiesValue is not repeatable. Multiple significant properties should be described in separate, repeated significantProperties container units. + # # + # # Definition: Description of the characteristics of a particular object subjectively determined to be important to maintain through preservation actions. # # @return [RDF::Vocabulary::Term] # attr_reader :hasSignificantPropertiesValue # + # # Usage Notes: Defining this semantic unit as size in bytes makes it unnecessary to record a unit of measurement. However, for the purpose of data exchange the unit of measurement should be stated or understood by both partners. + # # # # Definition: The size in bytes of the file or bitstream stored in the repository. # # - # # Usage Notes: Defining this semantic unit as size in bytes makes it unnecessary to record a unit of measurement. However, for the purpose of data exchange the unit of measurement should be stated or understood by both partners. + # # Creation / Maintenance Notes: Automatically obtained by the repository. # # # # Example: 2038937 # # # # Rationale: Size is useful for ensuring the correct number of bytes from storage have been retrieved and that an application has enough room to move or process files. It might also be used when billing for storage. - # # - # # Creation / Maintenance Notes: Automatically obtained by the repository. # # @return [RDF::Vocabulary::Term] # attr_reader :hasSize # # # @return [RDF::Vocabulary::Term] # attr_reader :hasSoftware # - # # Example: GNU gcc >=2.7.2 + # # Definition: The name and, if applicable, version of any software component needed by the software referenced in swName in the context of using this object. # # # # Usage Notes: The value should be constructed in a way that is consistent with the construction of swName and swVersion. This semantic unit identifies the software that is needed by what is recorded in swName, for example, a Perl script that depends on a Perl module. In this case the Perl script is listed in swName, with the module in swDependency within a software container. # # - # # Definition: The name and, if applicable, version of any software component needed by the software referenced in swName in the context of using this object. + # # Example: GNU gcc >=2.7.2 # # @return [RDF::Vocabulary::Term] # attr_reader :hasSoftwareDependency # @@ -946,53 +946,53 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasSoftwareName # - # # Example: Install Acroread (Adobe Acrobat) first; copy nppdf.so (the plug-in) to your Mozilla plug-ins directory, and make sure a copy of (or symlink to) Acroread is in your PATH. - # # # # Definition: Additional requirements or instructions related to the software referenced in swName. # # + # # Example: Install Acroread (Adobe Acrobat) first; copy nppdf.so (the plug-in) to your Mozilla plug-ins directory, and make sure a copy of (or symlink to) Acroread is in your PATH. + # # # # Usage Notes: This could be a reliable persistent identifier or URI pointing to software documentation within or outside the repository. # # @return [RDF::Vocabulary::Term] # attr_reader :hasSoftwareOtherInformation # # # Rationale: Several different layers of software can be required to support an object. # # - # # Definition: Class or category of software. - # # # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/softwareType # # + # # Definition: Class or category of software. + # # # # Extensions: One can use its own SKOS vocabulary to use for this property. The precondition to do this, is to link your SKOS concepts to the SKOS concepts of the id.loc.gov vocabulary. # # @return [RDF::Vocabulary::Term] # attr_reader :hasSoftwareType # - # # Definition: The version or versions of the software referenced in swName. - # # # # Usage Notes: If there is no formal version, the date of issuance can be used. # # + # # Definition: The version or versions of the software referenced in swName. + # # # # Examples: >=2.2.0, 6.0, 2003 # # @return [RDF::Vocabulary::Term] # attr_reader :hasSoftwareVersion # - # # Definition: The beginning date of the permission granted. - # # # # Data Constraint: To aid machine processing, value should use a structured form: xsd:dateTime + # # + # # Definition: The beginning date of the permission granted. # # @return [RDF::Vocabulary::Term] # attr_reader :hasStartDate # - # # Examples: Legal Deposit (Jersey) Law 200, National Library of New Zealand (Te Puna Mātauranga o Aotearoa) Act 2003 no 19 part 4 s 34 + # # Definition: An identifying designation for the statute. # # # # Usage Notes: Use standard citation form when applicable. # # - # # Definition: An identifying designation for the statute. + # # Examples: Legal Deposit (Jersey) Law 200, National Library of New Zealand (Te Puna Mātauranga o Aotearoa) Act 2003 no 19 part 4 s 34 # # @return [RDF::Vocabulary::Term] # attr_reader :hasStatuteCitation # - # # Definition: The date that the determination was made that the statute authorized the permission(s) noted. + # # Data Constraint: To aid machine processing, value should use a structured form: xsd:dateTime # # # # Rationale: The permission in question may be the subject of some interpretation. These assessments are made within a specific context and at a specific time. At another time the context, and therefore the assessment, could change. For this reason it can be important to record the date of the decision. # # # # Example: 2001-10-26T19:32:52+00:00 # # - # # Data Constraint: To aid machine processing, value should use a structured form: xsd:dateTime + # # Definition: The date that the determination was made that the statute authorized the permission(s) noted. # # @return [RDF::Vocabulary::Term] # attr_reader :hasStatuteInformationDeterminationDate # @@ -1009,13 +1009,13 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hasStorage # - # # Rationale: The repository needs to know the medium on which an object is stored in order to know how and when to do media refreshment and media migration. - # # - # # Definition: The physical medium on which the object is stored (e.g., magnetic tape, hard disk, CD-ROM, DVD). + # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/storageMedium # # # # Extensions: One can use its own SKOS vocabulary to use for this property. The precondition to do this, is to link your SKOS concepts to the SKOS concepts of the id.loc.gov vocabulary. # # - # # Data Constraint: Values are taken from the SKOS vocabulary: http://id.loc.gov/vocabulary/preservation/storageMedium + # # Rationale: The repository needs to know the medium on which an object is stored in order to know how and when to do media refreshment and media migration. + # # + # # Definition: The physical medium on which the object is stored (e.g., magnetic tape, hard disk, CD-ROM, DVD). # # @return [RDF::Vocabulary::Term] # attr_reader :hasStorageMedium # diff --git a/lib/rdf/vocab/prov.rb b/lib/rdf/vocab/prov.rb index a626d79..69913f0 100644 --- a/lib/rdf/vocab/prov.rb +++ b/lib/rdf/vocab/prov.rb @@ -9,8 +9,8 @@ module RDF::Vocab # # W3C PROVenance Interchange # # # # This document is published by the Provenance Working Group (http://www.w3.org/2011/prov/wiki/Main_Page). If you wish to make comments regarding this document, please send them to public-prov-comments@w3.org (subscribe public-prov-comments-request@w3.org, archives http://lists.w3.org/ Archives/Public/public-prov-comments/). All feedback is welcome. - # # @see http://www.w3.org/TR/prov-overview/ # # @see http://www.w3.org/TR/prov-o/#names-of-inverse-properties + # # @see http://www.w3.org/TR/prov-overview/ # class PROV < RDF::StrictVocabulary # # @return [RDF::Vocabulary::Term] # attr_reader :Accept @@ -18,18 +18,18 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :Activity # - # # It is not recommended that the type ActivityInfluence be asserted without also asserting one of its more specific subclasses. - # # # # ActivityInfluence provides additional descriptions of an Activity's binary influence upon any other kind of resource. Instances of ActivityInfluence use the prov:activity property to cite the influencing Activity. + # # + # # It is not recommended that the type ActivityInfluence be asserted without also asserting one of its more specific subclasses. # # @return [RDF::Vocabulary::Term] # attr_reader :ActivityInfluence # # # @return [RDF::Vocabulary::Term] # attr_reader :Agent # - # # It is not recommended that the type AgentInfluence be asserted without also asserting one of its more specific subclasses. - # # # # AgentInfluence provides additional descriptions of an Agent's binary influence upon any other kind of resource. Instances of AgentInfluence use the prov:agent property to cite the influencing Agent. + # # + # # It is not recommended that the type AgentInfluence be asserted without also asserting one of its more specific subclasses. # # @return [RDF::Vocabulary::Term] # attr_reader :AgentInfluence # @@ -110,9 +110,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :Generation # - # # Because prov:Influence is a broad relation, its most specific subclasses (e.g. prov:Communication, prov:Delegation, prov:End, prov:Revision, etc.) should be used when applicable. - # # # # An instance of prov:Influence provides additional descriptions about the binary prov:wasInfluencedBy relation from some influenced Activity, Entity, or Agent to the influencing Activity, Entity, or Agent. For example, :stomach_ache prov:wasInfluencedBy :spoon; prov:qualifiedInfluence [ a prov:Influence; prov:entity :spoon; :foo :bar ] . Because prov:Influence is a broad relation, the more specific relations (Communication, Delegation, End, etc.) should be used when applicable. + # # + # # Because prov:Influence is a broad relation, its most specific subclasses (e.g. prov:Communication, prov:Delegation, prov:End, prov:Revision, etc.) should be used when applicable. # # @return [RDF::Vocabulary::Term] # attr_reader :Influence # @@ -217,9 +217,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :asInBundle # - # # The Location of any resource. - # # # # This property has multiple RDFS domains to suit multiple OWL Profiles. See PROV-O OWL Profile. + # # + # # The Location of any resource. # # @return [RDF::Vocabulary::Term] # attr_reader :atLocation # @@ -305,9 +305,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :hadPrimarySource # - # # This property has multiple RDFS domains to suit multiple OWL Profiles. See PROV-O OWL Profile. - # # # # The _optional_ Role that an Entity assumed in the context of an Activity. For example, :baking prov:used :spoon; prov:qualified [ a prov:Usage; prov:entity :spoon; prov:hadRole roles:mixing_implement ]. + # # + # # This property has multiple RDFS domains to suit multiple OWL Profiles. See PROV-O OWL Profile. # # @return [RDF::Vocabulary::Term] # attr_reader :hadRole # @@ -352,9 +352,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :mentionOf # - # # A reference to the principal section of the PROV-M document that describes this concept. - # # # # A reference to the principal section of the PROV-DM document that describes this concept. + # # + # # A reference to the principal section of the PROV-M document that describes this concept. # # @return [RDF::Vocabulary::Term] # attr_reader :n # diff --git a/lib/rdf/vocab/rsa.rb b/lib/rdf/vocab/rsa.rb index 589cd96..963b3c9 100644 --- a/lib/rdf/vocab/rsa.rb +++ b/lib/rdf/vocab/rsa.rb @@ -8,8 +8,8 @@ module RDF::Vocab # # # # ontology for the RSA public private keys # # @see http://www.w3.org/ns/auth/X509Uml.svg - # # @see http://en.wikipedia.org/wiki/RSA # # @see http://lists.foaf-project.org/mailman/listinfo/foaf-protocols + # # @see http://en.wikipedia.org/wiki/RSA # class RSA < RDF::StrictVocabulary # # The union of the public and private components of an RSAKey. Usually those pieces are not kept together # # @return [RDF::Vocabulary::Term] diff --git a/lib/rdf/vocab/rss.rb b/lib/rdf/vocab/rss.rb index dd3d64c..6159baa 100644 --- a/lib/rdf/vocab/rss.rb +++ b/lib/rdf/vocab/rss.rb @@ -5,7 +5,48 @@ module RDF::Vocab # @!parse # # Vocabulary for + # # # class RSS < RDF::StrictVocabulary + # # An RSS information channel. + # # @return [RDF::Vocabulary::Term] + # attr_reader :channel + # + # # An RSS image. + # # @return [RDF::Vocabulary::Term] + # attr_reader :image + # + # # An RSS item. + # # @return [RDF::Vocabulary::Term] + # attr_reader :item + # + # # An RSS text input. + # # @return [RDF::Vocabulary::Term] + # attr_reader :textinput + # + # # A short text description of the subject. + # # @return [RDF::Vocabulary::Term] + # attr_reader :description + # + # # Points to a list of rss:item elements that are members of the subject channel. + # # @return [RDF::Vocabulary::Term] + # attr_reader :items + # + # # The URL to which an HTML rendering of the subject will link. + # # @return [RDF::Vocabulary::Term] + # attr_reader :link + # + # # The text input field's (variable) name. + # # @return [RDF::Vocabulary::Term] + # attr_reader :name + # + # # A descriptive title for the channel. + # # @return [RDF::Vocabulary::Term] + # attr_reader :title + # + # # The URL of the image to used in the 'src' attribute of the channel's image tag when rendered as HTML. + # # @return [RDF::Vocabulary::Term] + # attr_reader :url + # # end RSS = Class.new(RDF::StrictVocabulary("http://purl.org/rss/1.0/")) do diff --git a/lib/rdf/vocab/schema.rb b/lib/rdf/vocab/schema.rb index 8446d69..0897bbc 100644 --- a/lib/rdf/vocab/schema.rb +++ b/lib/rdf/vocab/schema.rb @@ -87,7 +87,7 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :Airport # - # # An intangible item that describes an alignment between a learning resource and a node in an educational framework. + # # An intangible item that describes an alignment between a learning resource and a node in an educational framework.

Should not be used where the nature of the alignment can be described using a simple property, for example to express that a resource teaches or assesses a competency. # # @return [RDF::Vocabulary::Term] # attr_reader :AlignmentObject # @@ -803,7 +803,7 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :DefenceEstablishment # - # # DefinedRegion is a DefinedRegion + # # A DefinedRegion is a geographic area defined by potentially arbitrary (rather than political, administrative or natural geographical) criteria. Properties are provided for defining a region by reference to sets of postal codes.

Examples: a delivery destination when shopping. Region where regional pricing is configured.

Requirement 1: Country: US States: "NY", "CA"

Requirement 2: Country: US PostalCode Set: { [94000-94585], [97000, 97999], [13000, 13599]} { [12345, 12345], [78945, 78945], } Region = state, canton, prefecture, autonomous community... # # @return [RDF::Vocabulary::Term] # attr_reader :DefinedRegion # @@ -831,6 +831,10 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :DeliveryMethod # + # # A DeliveryTimeSettings represents re-usable pieces of shipping information, relating to timing. It is designed for publication on an URL that may be referenced via the shippingSettingsLink property of a OfferShippingSpecification. Several occurrences can be published, distinguished (and identified/referenced) by their different values for shippingLabel. + # # @return [RDF::Vocabulary::Term] + # attr_reader :DeliveryTimeSettings + # # # A demand entity represents the public, not necessarily binding, not necessarily exclusive, announcement by an organization or person to seek a certain type of goods or services. For describing demand using this type, the very same properties used for Offer apply. # # @return [RDF::Vocabulary::Term] # attr_reader :Demand @@ -2067,6 +2071,10 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :NGO # + # # NLNonprofitType: Non-profit organization type originating from the Netherlands. + # # @return [RDF::Vocabulary::Term] + # attr_reader :NLNonprofitType + # # # A nail salon. # # @return [RDF::Vocabulary::Term] # attr_reader :NailSalon @@ -2091,6 +2099,10 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :NightClub # + # # NonprofitType enumerates several kinds of official non-profit types of which a non-profit organization can be. + # # @return [RDF::Vocabulary::Term] + # attr_reader :NonprofitType + # # # A notary. # # @return [RDF::Vocabulary::Term] # attr_reader :Notary @@ -2395,6 +2407,10 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :PostalAddress # + # # Indicates a range of postalcodes, usually defined as the set of valid codes between postalCodeBegin and postalCodeEnd, inclusively. + # # @return [RDF::Vocabulary::Term] + # attr_reader :PostalCodeRangeSpecification + # # # A large, usually printed placard, bill, or announcement, often illustrated, that is posted to advertise or publicize something. # # @return [RDF::Vocabulary::Term] # attr_reader :Poster @@ -2831,6 +2847,14 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :SheetMusic # + # # ShippingDeliveryTime provides various pieces of information about delivery times for shipping. + # # @return [RDF::Vocabulary::Term] + # attr_reader :ShippingDeliveryTime + # + # # A ShippingRateSettings represents re-usable pieces of shipping information. It is designed for publication on an URL that may be referenced via the shippingSettingsLink property of an OfferShippingDetails. Several occurrences can be published, distinguished and matched (i.e. identified/referenced) by their different values for shippingLabel. + # # @return [RDF::Vocabulary::Term] + # attr_reader :ShippingRateSettings + # # # A shoe store. # # @return [RDF::Vocabulary::Term] # attr_reader :ShoeStore @@ -3147,10 +3171,18 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :TypeAndQuantityNode # + # # UKNonprofitType: Non-profit organization type originating from the United Kingdom. + # # @return [RDF::Vocabulary::Term] + # attr_reader :UKNonprofitType + # # # Data type: URL. # # @return [RDF::Vocabulary::Term] # attr_reader :URL # + # # USNonprofitType: Non-profit organization type originating from the United States. + # # @return [RDF::Vocabulary::Term] + # attr_reader :USNonprofitType + # # # The act of un-registering from a service.

Related actions:

  • RegisterAction: antonym of UnRegisterAction.
  • LeaveAction: Unlike LeaveAction, UnRegisterAction implies that you are unregistering from a service you werer previously registered, rather than leaving a team/group of people.
# # @return [RDF::Vocabulary::Term] # attr_reader :UnRegisterAction @@ -3623,7 +3655,7 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :algorithm # - # # A category of alignment between the learning resource and the framework node. Recommended values include: 'assesses', 'teaches', 'requires', 'textComplexity', 'readingLevel', 'educationalSubject', and 'educationalLevel'. + # # A category of alignment between the learning resource and the framework node. Recommended values include: 'requires', 'textComplexity', 'readingLevel', and 'educationalSubject'. # # @return [RDF::Vocabulary::Term] # attr_reader :alignmentType # @@ -3803,6 +3835,10 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :assemblyVersion # + # # The item being described is intended to assess the competency or learning outcome defined by the referenced term. + # # @return [RDF::Vocabulary::Term] + # attr_reader :assesses + # # # The anatomy of the underlying organ system or structures associated with this entity. # # @return [RDF::Vocabulary::Term] # attr_reader :associatedAnatomy @@ -4123,6 +4159,10 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :busNumber # + # # Days of the week when the merchant typically operates, indicated via opening hours markup. + # # @return [RDF::Vocabulary::Term] + # attr_reader :businessDays + # # # The business function (e.g. sell, lease, repair, dispose) of the offer or component of a bundle (TypeAndQuantityNode). The default is http://purl.org/goodrelations/v1#Sell. # # @return [RDF::Vocabulary::Term] # attr_reader :businessFunction @@ -4551,6 +4591,10 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :customer # + # # Order cutoff time allows merchants to describe the time after which they will no longer process orders received on that day. For orders processed after cutoff time, one day gets added to the delivery time estimate. This property is expected to be most typically used via the ShippingRateSettings publication pattern. The time is indicated using the time notation from the ISO-8601 DateTime format, e.g. 14:45:15Z would represent a daily cutoff at 14:45h UTC. + # # @return [RDF::Vocabulary::Term] + # attr_reader :cutoffTime + # # # collectiondate - Date for which patient counts are reported. # # @return [RDF::Vocabulary::Term] # attr_reader :cvdCollectionDate @@ -4703,6 +4747,10 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :deliveryStatus # + # # The total delay between the receipt of the order and the goods reaching the final customer. + # # @return [RDF::Vocabulary::Term] + # attr_reader :deliveryTime + # # # A relationship between an organization and a department of that organization, also described as an organization (allowing different urls, logos, opening hours). For example: a store with a pharmacy, or a bakery with a cafe. # # @return [RDF::Vocabulary::Term] # attr_reader :department @@ -4839,6 +4887,10 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :documentation # + # # Indicates, as part of an OfferShippingDetails, when shipping to a particular shippingDestination is not available. + # # @return [RDF::Vocabulary::Term] + # attr_reader :doesNotShip + # # # Relates a property to a class that is (one of) the type(s) the property is expected to be used on. # # @return [RDF::Vocabulary::Term] # attr_reader :domainIncludes @@ -4931,6 +4983,10 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :earlyPrepaymentPenalty # + # # An EIDR (Entertainment Identifier Registry) identifier representing a specific edit / edition for a work of film or television.

For example, the motion picture known as "Ghostbusters" whose titleEIDR is "10.5240/7EC7-228A-510A-053E-CBB8-J", has several edits e.g. "10.5240/1F2A-E1C5-680A-14C6-E76B-I" and "10.5240/8A35-3BEE-6497-5D12-9E4F-3".

Since schema.org types like Movie and TVEpisode can be used for both works and their multiple expressions, it is possible to use titleEIDR alone (for a general description), or alongside editEIDR for a more edit-specific description. + # # @return [RDF::Vocabulary::Term] + # attr_reader :editEIDR + # # # Specifies the Person who edited the CreativeWork. # # @return [RDF::Vocabulary::Term] # attr_reader :editor @@ -4939,7 +4995,7 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :educationRequirements # - # # An alignment to an established educational framework. + # # An alignment to an established educational framework.

This property should not be used where the nature of the alignment can be described using a simple property, for example to express that a resource teaches or assesses a competency. # # @return [RDF::Vocabulary::Term] # attr_reader :educationalAlignment # @@ -4971,6 +5027,10 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :elevation # + # # The legal requirements such as citizenship, visa and other documentation required for an applicant to this job. + # # @return [RDF::Vocabulary::Term] + # attr_reader :eligibilityToWorkRequirement + # # # The type(s) of customers for which the given offer is valid. # # @return [RDF::Vocabulary::Term] # attr_reader :eligibleCustomerType @@ -5323,6 +5383,10 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :free # + # # A monetary value above which (or equal to) the shipping rate becomes free. Intended to be used via an OfferShippingSpecification with shippingSettingsLink matching this ShippingSettings. + # # @return [RDF::Vocabulary::Term] + # attr_reader :freeShippingThreshold + # # # How often the dose is taken, e.g. 'daily'. # # @return [RDF::Vocabulary::Term] # attr_reader :frequency @@ -5511,6 +5575,10 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :guidelineSubject # + # # The typical delay between the receipt of the order and the goods either leaving the warehouse or being prepared for pickup, in case the delivery method is on site pickup. Typical properties: minValue, maxValue, unitCode (d for DAY). This is by common convention assumed to mean business days (if a unitCode is used, coded as "d"), i.e. only counting days when the business normally operates. + # # @return [RDF::Vocabulary::Term] + # attr_reader :handlingTime + # # # A broadcast channel of a broadcast service. # # @return [RDF::Vocabulary::Term] # attr_reader :hasBroadcastChannel @@ -5955,6 +6023,10 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :isSimilarTo # + # # This can be marked 'true' to indicate that some published ShippingRateSettings are intended to apply to all OfferShippingDetails published by the same merchant, when referenced by a shippingSettingsLink in those settings. It is not meaningful to use a 'true' value for this property alongside a shippingLabel, since this property is for use with unlabelled ShippingRateSettings. + # # @return [RDF::Vocabulary::Term] + # attr_reader :isUnlabelledFallback + # # # A pointer to a base product from which this product is a variant. It is safe to infer that the variant inherits all product features from the base model, unless defined locally. This is not transitive. # # @return [RDF::Vocabulary::Term] # attr_reader :isVariantOf @@ -6559,6 +6631,10 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :nonProprietaryName # + # # nonprofit Status indicates the legal status of a non-profit organization in its primary place of business. + # # @return [RDF::Vocabulary::Term] + # attr_reader :nonprofitStatus + # # # Range of acceptable values for a typical patient, when applicable. # # @return [RDF::Vocabulary::Term] # attr_reader :normalRange @@ -7051,6 +7127,22 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :postalCode # + # # First postal code in a range (included). + # # @return [RDF::Vocabulary::Term] + # attr_reader :postalCodeBegin + # + # # Last postal code in the range (included). Needs to be after postalCodeBegin. + # # @return [RDF::Vocabulary::Term] + # attr_reader :postalCodeEnd + # + # # A defined range of postal codes indicated by a common textual prefix. Used for non-numeric systems such as UK. + # # @return [RDF::Vocabulary::Term] + # attr_reader :postalCodePrefix + # + # # A defined range of postal codes. + # # @return [RDF::Vocabulary::Term] + # attr_reader :postalCodeRange + # # # Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. # # @return [RDF::Vocabulary::Term] # attr_reader :potentialAction @@ -7847,10 +7939,26 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :sharedContent # - # # indicates (posssibly multiple) shipping destinations. These can be defined in several ways e.g. postalCode ranges. + # # indicates (possibly multiple) shipping destinations. These can be defined in several ways e.g. postalCode ranges. # # @return [RDF::Vocabulary::Term] # attr_reader :shippingDestination # + # # Indicates information about the shipping policies and options associated with an Offer. + # # @return [RDF::Vocabulary::Term] + # attr_reader :shippingDetails + # + # # Label to match an OfferShippingDetails with a ShippingRateSettings (within the context of a shippingSettingsLink cross-reference). + # # @return [RDF::Vocabulary::Term] + # attr_reader :shippingLabel + # + # # The shipping rate is the cost of shipping to the specified destination. Typically, the maxValue and currency values (of the MonetaryAmount) are most appropriate. + # # @return [RDF::Vocabulary::Term] + # attr_reader :shippingRate + # + # # Link to a page containing ShippingRateSettings and DeliveryTimeSettings details. + # # @return [RDF::Vocabulary::Term] + # attr_reader :shippingSettingsLink + # # # A sibling of the person. # # @return [RDF::Vocabulary::Term] # attr_reader :sibling @@ -8195,6 +8303,10 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :taxID # + # # The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term. + # # @return [RDF::Vocabulary::Term] + # attr_reader :teaches + # # # The telephone number. # # @return [RDF::Vocabulary::Term] # attr_reader :telephone @@ -8275,6 +8387,10 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :title # + # # An EIDR (Entertainment Identifier Registry) identifier representing at the most general/abstract level, a work of film or television.

For example, the motion picture known as "Ghostbusters" has a titleEIDR of "10.5240/7EC7-228A-510A-053E-CBB8-J". This title (or work) may have several variants, which EIDR calls "edits". See editEIDR.

Since schema.org types like Movie and TVEpisode can be used for both works and their multiple expressions, it is possible to use titleEIDR alone (for a general description), or alongside editEIDR for a more edit-specific description. + # # @return [RDF::Vocabulary::Term] + # attr_reader :titleEIDR + # # # A sub property of location. The final location of the object or the agent after the action. # # @return [RDF::Vocabulary::Term] # attr_reader :toLocation @@ -8363,6 +8479,14 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :transcript # + # # The typical delay the order has been sent for delivery and the goods reach the final customer. Typical properties: minValue, maxValue, unitCode (d for DAY). + # # @return [RDF::Vocabulary::Term] + # attr_reader :transitTime + # + # # Label to match an OfferShippingDetails with a DeliveryTimeSettings (within the context of a shippingSettingsLink cross-reference). + # # @return [RDF::Vocabulary::Term] + # attr_reader :transitTimeLabel + # # # The work that this work has been translated from. e.g. 物种起源 is a translationOf “On the Origin of Species” # # @return [RDF::Vocabulary::Term] # attr_reader :translationOfWork @@ -8807,6 +8931,10 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :CausesHealthAspect # + # # CharitableIncorporatedOrganization: Non-profit type referring to a Charitable Incorporated Organization (UK). + # # @return [RDF::Vocabulary::Term] + # attr_reader :CharitableIncorporatedOrganization + # # # A system of medicine focused on the relationship between the body's structure, mainly the spine, and its functioning. # # @return [RDF::Vocabulary::Term] # attr_reader :Chiropractic @@ -9163,6 +9291,10 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :LimitedAvailability # + # # LimitedByGuaranteeCharity: Non-profit type referring to a charitable company that is limited by guarantee (UK). + # # @return [RDF::Vocabulary::Term] + # attr_reader :LimitedByGuaranteeCharity + # # # LiveAlbum. # # @return [RDF::Vocabulary::Term] # attr_reader :LiveAlbum @@ -9287,6 +9419,158 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :NoninvasiveProcedure # + # # Nonprofit501a: Non-profit type referring to Farmers’ Cooperative Associations. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501a + # + # # Nonprofit501c1: Non-profit type referring to Corporations Organized Under Act of Congress, including Federal Credit Unions and National Farm Loan Associations. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c1 + # + # # Nonprofit501c10: Non-profit type referring to Domestic Fraternal Societies and Associations. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c10 + # + # # Nonprofit501c11: Non-profit type referring to Teachers' Retirement Fund Associations. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c11 + # + # # Nonprofit501c12: Non-profit type referring to Benevolent Life Insurance Associations, Mutual Ditch or Irrigation Companies, Mutual or Cooperative Telephone Companies. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c12 + # + # # Nonprofit501c13: Non-profit type referring to Cemetery Companies. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c13 + # + # # Nonprofit501c14: Non-profit type referring to State-Chartered Credit Unions, Mutual Reserve Funds. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c14 + # + # # Nonprofit501c15: Non-profit type referring to Mutual Insurance Companies or Associations. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c15 + # + # # Nonprofit501c16: Non-profit type referring to Cooperative Organizations to Finance Crop Operations. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c16 + # + # # Nonprofit501c17: Non-profit type referring to Supplemental Unemployment Benefit Trusts. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c17 + # + # # Nonprofit501c18: Non-profit type referring to Employee Funded Pension Trust (created before 25 June 1959). + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c18 + # + # # Nonprofit501c19: Non-profit type referring to Post or Organization of Past or Present Members of the Armed Forces. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c19 + # + # # Nonprofit501c2: Non-profit type referring to Title-holding Corporations for Exempt Organizations. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c2 + # + # # Nonprofit501c20: Non-profit type referring to Group Legal Services Plan Organizations. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c20 + # + # # Nonprofit501c21: Non-profit type referring to Black Lung Benefit Trusts. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c21 + # + # # Nonprofit501c22: Non-profit type referring to Withdrawal Liability Payment Funds. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c22 + # + # # Nonprofit501c23: Non-profit type referring to Veterans Organizations. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c23 + # + # # Nonprofit501c24: Non-profit type referring to Section 4049 ERISA Trusts. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c24 + # + # # Nonprofit501c25: Non-profit type referring to Real Property Title-Holding Corporations or Trusts with Multiple Parents. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c25 + # + # # Nonprofit501c26: Non-profit type referring to State-Sponsored Organizations Providing Health Coverage for High-Risk Individuals. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c26 + # + # # Nonprofit501c27: Non-profit type referring to State-Sponsored Workers' Compensation Reinsurance Organizations. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c27 + # + # # Nonprofit501c28: Non-profit type referring to National Railroad Retirement Investment Trusts. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c28 + # + # # Nonprofit501c3: Non-profit type referring to Religious, Educational, Charitable, Scientific, Literary, Testing for Public Safety, to Foster National or International Amateur Sports Competition, or Prevention of Cruelty to Children or Animals Organizations. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c3 + # + # # Nonprofit501c4: Non-profit type referring to Civic Leagues, Social Welfare Organizations, and Local Associations of Employees. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c4 + # + # # Nonprofit501c5: Non-profit type referring to Labor, Agricultural and Horticultural Organizations. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c5 + # + # # Nonprofit501c6: Non-profit type referring to Business Leagues, Chambers of Commerce, Real Estate Boards. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c6 + # + # # Nonprofit501c7: Non-profit type referring to Social and Recreational Clubs. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c7 + # + # # Nonprofit501c8: Non-profit type referring to Fraternal Beneficiary Societies and Associations. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c8 + # + # # Nonprofit501c9: Non-profit type referring to Voluntary Employee Beneficiary Associations. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501c9 + # + # # Nonprofit501d: Non-profit type referring to Religious and Apostolic Associations. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501d + # + # # Nonprofit501e: Non-profit type referring to Cooperative Hospital Service Organizations. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501e + # + # # Nonprofit501f: Non-profit type referring to Cooperative Service Organizations. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501f + # + # # Nonprofit501k: Non-profit type referring to Child Care Organizations. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501k + # + # # Nonprofit501n: Non-profit type referring to Charitable Risk Pools. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501n + # + # # Nonprofit501q: Non-profit type referring to Credit Counseling Organizations. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit501q + # + # # Nonprofit527: Non-profit type referring to Political organizations. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Nonprofit527 + # + # # NonprofitANBI: Non-profit type referring to a Public Benefit Organization (NL). + # # @return [RDF::Vocabulary::Term] + # attr_reader :NonprofitANBI + # + # # NonprofitSBBI: Non-profit type referring to a Social Interest Promoting Institution (NL). + # # @return [RDF::Vocabulary::Term] + # attr_reader :NonprofitSBBI + # # # Nose function assessment with clinical examination. # # @return [RDF::Vocabulary::Term] # attr_reader :Nose @@ -9827,6 +10111,10 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :TypesHealthAspect # + # # UKTrust: Non-profit type referring to a UK trust. + # # @return [RDF::Vocabulary::Term] + # attr_reader :UKTrust + # # # Ultrasound imaging. # # @return [RDF::Vocabulary::Term] # attr_reader :Ultrasound @@ -9835,6 +10123,10 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :UnemploymentSupport # + # # UnincorporatedAssociationCharity: Non-profit type referring to a charitable company that is not incorporated (UK). + # # @return [RDF::Vocabulary::Term] + # attr_reader :UnincorporatedAssociationCharity + # # # Indicates that a document has no particular or special standing (e.g. a republication of a law by a private publisher). # # @return [RDF::Vocabulary::Term] # attr_reader :UnofficialLegalValue @@ -9902,17 +10194,17 @@ module RDF::Vocab term :"3DModel", comment: %(A 3D model represents some kind of 3D content, which may have encodings in one or more MediaObjects. Many 3D formats are available \(e.g. see Wikipedia\); specific encoding formats can be represented using the encodingFormat property applied to the relevant MediaObject. For the case of a single file published after Zip compression, the convention of appending '+zip' to the encodingFormat can be used. Geospatial, AR/VR, artistic/animation, gaming, engineering and scientific content can all be represented using 3DModel.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2140".freeze, label: "3DModel".freeze, "schema:category": "issue-2140".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2140".freeze, subClassOf: "schema:MediaObject".freeze, type: "rdfs:Class".freeze term :AMRadioChannel, comment: %(A radio channel that uses AM.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, label: "AMRadioChannel".freeze, "schema:category": "issue-1004".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, subClassOf: "schema:RadioChannel".freeze, type: "rdfs:Class".freeze term :APIReference, @@ -9942,8 +10234,8 @@ module RDF::Vocab For more specific types of accommodations not defined in schema.org, one can use additionalType with external vocabularies.

See also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "Accommodation".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, subClassOf: "schema:Place".freeze, type: "rdfs:Class".freeze term :AccountingService, @@ -9962,15 +10254,15 @@ module RDF::Vocab comment: %(An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.

See also blog post and Actions overview document.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass".freeze, label: "Action".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass".freeze, subClassOf: "schema:Thing".freeze, type: "rdfs:Class".freeze term :ActionAccessSpecification, comment: %(A set of requirements that a must be fulfilled in order to perform an Action.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, label: "ActionAccessSpecification".freeze, "schema:category": "issue-1741".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :ActionStatusType, @@ -10000,10 +10292,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :AdvertiserContentArticle, comment: %(An Article that an external entity has paid to place or to produce to its specifications. Includes advertorials, sponsored content, native advertising and other paid content.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "AdvertiserContentArticle".freeze, "schema:category": "issue-1525".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], subClassOf: "schema:Article".freeze, type: "rdfs:Class".freeze term :AggregateOffer, @@ -10034,9 +10326,11 @@ module RDF::Vocab subClassOf: "schema:CivicStructure".freeze, type: "rdfs:Class".freeze term :AlignmentObject, - comment: %(An intangible item that describes an alignment between a learning resource and a node in an educational framework.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass".freeze, + comment: %(An intangible item that describes an alignment between a learning resource and a node in an educational framework.

+ +Should not be used where the nature of the alignment can be described using a simple property, for example to express that a resource teaches or assesses a competency.).freeze, label: "AlignmentObject".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :AllocateAction, @@ -10051,10 +10345,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :AnalysisNewsArticle, comment: %(An AnalysisNewsArticle is a NewsArticle that, while based on factual reporting, incorporates the expertise of the author/producer, offering interpretations and conclusions.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "AnalysisNewsArticle".freeze, "schema:category": "issue-1525".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], subClassOf: "schema:NewsArticle".freeze, type: "rdfs:Class".freeze term :AnatomicalStructure, @@ -10076,14 +10370,14 @@ module RDF::Vocab type: "rdfs:Class".freeze term :Answer, comment: %(An answer offered to a question; perhaps correct, perhaps opinionated or wrong.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange".freeze, label: "Answer".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange".freeze, subClassOf: "schema:Comment".freeze, type: "rdfs:Class".freeze term :Apartment, comment: %(An apartment \(in American English\) or flat \(in British English\) is a self-contained housing unit \(a type of residential real estate\) that occupies only part of a building \(Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Apartment\).).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "Apartment".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, subClassOf: "schema:Accommodation".freeze, type: "rdfs:Class".freeze term :ApartmentComplex, @@ -10121,18 +10415,18 @@ module RDF::Vocab type: "rdfs:Class".freeze term :ArchiveComponent, comment: %(An intangible type to be applied to any archive content, carrying with it a set of properties required to describe archival items and collections.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1758".freeze, label: "ArchiveComponent".freeze, "schema:category": "issue-1758".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1758".freeze, subClassOf: "schema:CreativeWork".freeze, type: "rdfs:Class".freeze term :ArchiveOrganization, comment: %(An organization with archival holdings. An organization which keeps and preserves archival material and typically makes it accessible to the public.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1758".freeze, label: "ArchiveOrganization".freeze, "schema:category": "issue-1758".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1758".freeze, subClassOf: "schema:LocalBusiness".freeze, type: "rdfs:Class".freeze term :ArriveAction, @@ -10156,8 +10450,8 @@ module RDF::Vocab comment: %(An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.

See also blog post.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, label: "Article".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, subClassOf: "schema:CreativeWork".freeze, type: "rdfs:Class".freeze term :AskAction, @@ -10174,10 +10468,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :AskPublicNewsArticle, comment: %(A NewsArticle expressing an open call by a NewsMediaOrganization asking the public for input, insights, clarifications, anecdotes, documentation, etc., on an issue, for reporting purposes.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "AskPublicNewsArticle".freeze, "schema:category": "issue-1525".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], subClassOf: "schema:NewsArticle".freeze, type: "rdfs:Class".freeze term :AssessAction, @@ -10192,9 +10486,9 @@ module RDF::Vocab type: "rdfs:Class".freeze term :Atlas, comment: %(A collection or bound volume of maps, charts, plates or tables, physical or in media form illustrating any subject.).freeze, - "dc:source": "http://www.productontology.org/id/Atlas".freeze, label: "Atlas".freeze, "schema:isPartOf": "http://bib.schema.org".freeze, + "schema:source": "http://www.productontology.org/id/Atlas".freeze, subClassOf: "schema:CreativeWork".freeze, type: "rdfs:Class".freeze term :Attorney, @@ -10211,8 +10505,8 @@ module RDF::Vocab type: "rdfs:Class".freeze term :AudioObject, comment: %(An audio file.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, label: "AudioObject".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, subClassOf: "schema:MediaObject".freeze, type: "rdfs:Class".freeze term :Audiobook, @@ -10268,10 +10562,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :BackgroundNewsArticle, comment: %(A NewsArticle providing historical context, definition and detail on a specific topic \(aka "explainer" or "backgrounder"\). For example, an in-depth article or frequently-asked-questions \(FAQ\) document on topics such as Climate Change or the European Union. Other kinds of background material from a non-news setting are often described using Book or Article, in particular ScholarlyArticle. See also NewsArticle for related vocabulary from a learning/education perspective.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "BackgroundNewsArticle".freeze, "schema:category": "issue-1525".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], subClassOf: "schema:NewsArticle".freeze, type: "rdfs:Class".freeze term :Bacteria, @@ -10286,8 +10580,8 @@ module RDF::Vocab type: "rdfs:Class".freeze term :BankAccount, comment: %(A product or service offered by a bank whereby one may deposit, withdraw or transfer money and in some cases be paid interest.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, label: "BankAccount".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, subClassOf: "schema:FinancialProduct".freeze, type: "rdfs:Class".freeze term :BankOrCreditUnion, @@ -10324,15 +10618,15 @@ module RDF::Vocab type: "rdfs:Class".freeze term :BedDetails, comment: %(An entity holding detailed information about the available bed types, e.g. the quantity of twin beds for a hotel room. For the single case of just one bed of a certain type, you can use bed directly with a text. See also BedType \(under development\).).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "BedDetails".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :BedType, comment: %(A type of bed. This is used for indicating the bed or beds available in an accommodation.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1262".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze], label: "BedType".freeze, "schema:category": "issue-1262".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1262".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze], subClassOf: "schema:QualitativeValue".freeze, type: "rdfs:Class".freeze term :BefriendAction, @@ -10438,8 +10732,8 @@ module RDF::Vocab type: "rdfs:Class".freeze term :Brand, comment: %(A brand is a name used by an organization or business person for labeling a product, product group, or similar.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "Brand".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :BreadcrumbList, @@ -10471,9 +10765,9 @@ module RDF::Vocab type: "rdfs:Class".freeze term :BroadcastFrequencySpecification, comment: %(The frequency in MHz and the modulation used for a particular BroadcastService.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, label: "BroadcastFrequencySpecification".freeze, "schema:category": "issue-1004".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :BroadcastService, @@ -10483,10 +10777,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :BrokerageAccount, comment: %(An account that allows an investor to deposit funds and place investment orders with a licensed broker or brokerage firm.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "BrokerageAccount".freeze, "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], subClassOf: "schema:InvestmentOrDeposit".freeze, type: "rdfs:Class".freeze term :BuddhistTemple, @@ -10496,9 +10790,9 @@ module RDF::Vocab type: "rdfs:Class".freeze term :BusOrCoach, comment: %(A bus \(also omnibus or autobus\) is a road vehicle designed to carry passengers. Coaches are luxury busses, usually in service for long distance travel.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "BusOrCoach".freeze, "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, subClassOf: "schema:Vehicle".freeze, type: "rdfs:Class".freeze term :BusReservation, @@ -10540,8 +10834,8 @@ module RDF::Vocab
  • http://purl.org/goodrelations/v1#Reseller
  • ).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "BusinessEntityType".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, subClassOf: "schema:Enumeration".freeze, type: "rdfs:Class".freeze term :BusinessEvent, @@ -10565,8 +10859,8 @@ module RDF::Vocab
  • http://purl.org/goodrelations/v1#Buy
  • ).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "BusinessFunction".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, subClassOf: "schema:Enumeration".freeze, type: "rdfs:Class".freeze term :BuyAction, @@ -10578,10 +10872,10 @@ module RDF::Vocab comment: %(A CDCPMDRecord is a data structure representing a record in a CDC tabular data format used for hospital data reporting. See documentation for details, and the linked CDC materials for authoritative definitions used as the source here.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, label: "CDCPMDRecord".freeze, "schema:category": "issue-2521".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, subClassOf: "schema:StructuredValue".freeze, type: "rdfs:Class".freeze term :CableOrSatelliteService, @@ -10600,8 +10894,8 @@ module RDF::Vocab In British English a campsite is an area, usually divided into a number of pitches, where people can camp overnight using tents or camper vans or caravans; this British English use of the word is synonymous with the American English expression campground. In American English the term campsite generally means an area where an individual, family, group, or military unit can pitch a tent or park a camper; a campground may contain many campsites \(Source: Wikipedia see https://en.wikipedia.org/wiki/Campsite\).

    See also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "Campground".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, subClassOf: ["schema:CivicStructure".freeze, "schema:LodgingBusiness".freeze], type: "rdfs:Class".freeze term :CampingPitch, @@ -10611,8 +10905,8 @@ module RDF::Vocab \(Source: Wikipedia see https://en.wikipedia.org/wiki/Campsite\).

    See also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "CampingPitch".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, subClassOf: "schema:Accommodation".freeze, type: "rdfs:Class".freeze term :Canal, @@ -10634,15 +10928,15 @@ module RDF::Vocab type: "rdfs:Class".freeze term :Car, comment: %(A car is a wheeled, self-powered motor vehicle used for transportation.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "Car".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, subClassOf: "schema:Vehicle".freeze, type: "rdfs:Class".freeze term :CarUsageType, comment: %(A value indicating a special usage of a car, e.g. commercial rental, driving school, or as a taxi.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "CarUsageType".freeze, "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, subClassOf: "schema:QualitativeValue".freeze, type: "rdfs:Class".freeze term :Casino, @@ -10652,18 +10946,18 @@ module RDF::Vocab type: "rdfs:Class".freeze term :CategoryCode, comment: %(A Category Code.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, label: "CategoryCode".freeze, "schema:category": "issue-894".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, subClassOf: "schema:DefinedTerm".freeze, type: "rdfs:Class".freeze term :CategoryCodeSet, comment: %(A set of Category Code values.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, label: "CategoryCodeSet".freeze, "schema:category": "issue-894".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, subClassOf: "schema:DefinedTermSet".freeze, type: "rdfs:Class".freeze term :CatholicChurch, @@ -10761,17 +11055,17 @@ module RDF::Vocab Beyond ClaimReview, the Claim type can be associated with related creative works - for example a ScholaryArticle or Question might be about some Claim.

    At this time, Schema.org does not define any types of relationship between claims. This is a natural area for future exploration.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1828".freeze, label: "Claim".freeze, "schema:category": "issue-1828".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1828".freeze, subClassOf: "schema:CreativeWork".freeze, type: "rdfs:Class".freeze term :ClaimReview, comment: %(A fact-checking review of claims made \(or reported\) in some creative work \(referenced via itemReviewed\).).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1061".freeze, label: "ClaimReview".freeze, "schema:category": "issue-1061".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1061".freeze, subClassOf: "schema:Review".freeze, type: "rdfs:Class".freeze term :Class, @@ -10879,16 +11173,16 @@ module RDF::Vocab comment: %(A CompleteDataFeed is a DataFeed whose standard representation includes content for every item currently in the feed.

    This is the equivalent of Atom's element as defined in Feed Paging and Archiving RFC 5005, For example \(and as defined for Atom\), when using data from a feed that represents a collection of items that varies over time \(e.g. "Top Twenty Records"\) there is no need to have newer entries mixed in alongside older, obsolete entries. By marking this feed as a CompleteDataFeed, old entries can be safely discarded when the feed is refreshed, since we can assume the feed has provided descriptions for all current items.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1397".freeze, label: "CompleteDataFeed".freeze, "schema:category": "issue-1397".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1397".freeze, subClassOf: "schema:DataFeed".freeze, type: "rdfs:Class".freeze term :CompoundPriceSpecification, comment: %(A compound price specification is one that bundles multiple prices that all apply in combination for different dimensions of consumption. Use the name property of the attached unit price specification for indicating the dimension of a price component \(e.g. "electricity" or "final cleaning"\).).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "CompoundPriceSpecification".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, subClassOf: "schema:PriceSpecification".freeze, type: "rdfs:Class".freeze term :ComputerLanguage, @@ -10915,10 +11209,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :Consortium, comment: %(A Consortium is a membership Organization whose members are typically Organizations.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1559".freeze, label: "Consortium".freeze, "schema:category": "issue-1559".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1559".freeze, subClassOf: "schema:Organization".freeze, type: "rdfs:Class".freeze term :ConsumeAction, @@ -10968,16 +11262,16 @@ module RDF::Vocab type: "rdfs:Class".freeze term :Corporation, comment: %(Organization: A business corporation.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, label: "Corporation".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, subClassOf: "schema:Organization".freeze, type: "rdfs:Class".freeze term :CorrectionComment, comment: %(A comment that corrects CreativeWork.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1950".freeze, label: "CorrectionComment".freeze, "schema:category": "issue-1950".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1950".freeze, subClassOf: "schema:Comment".freeze, type: "rdfs:Class".freeze term :Country, @@ -11012,10 +11306,10 @@ module RDF::Vocab disease is available. If the facility is being made available from an established Pharmacy, Hotel, or other non-medical organization, multiple types can be listed. This makes it easier to re-use existing schema.org information about that place e.g. contact info, address, opening hours. Note that in an emergency, such information may not always be reliable.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, label: "CovidTestingFacility".freeze, "schema:category": "issue-2490".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, subClassOf: "schema:MedicalClinic".freeze, type: "rdfs:Class".freeze term :CreateAction, @@ -11025,8 +11319,8 @@ module RDF::Vocab type: "rdfs:Class".freeze term :CreativeWork, comment: %(The most generic kind of creative work, including books, movies, photographs, software programs, etc.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, label: "CreativeWork".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, subClassOf: "schema:Thing".freeze, type: "rdfs:Class".freeze term :CreativeWorkSeason, @@ -11057,8 +11351,8 @@ module RDF::Vocab
  • http://purl.org/goodrelations/v1#VISA
  • ).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze], label: "CreditCard".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze], subClassOf: ["schema:LoanOrCredit".freeze, "schema:PaymentCard".freeze], type: "rdfs:Class".freeze term :Crematorium, @@ -11068,24 +11362,24 @@ module RDF::Vocab type: "rdfs:Class".freeze term :CriticReview, comment: %(A CriticReview is a more specialized form of Review written or published by a source that is recognized for its reviewing activities. These can include online columns, travel and food guides, TV and radio shows, blogs and other independent Web sites. CriticReviews are typically more in-depth and professionally written. For simpler, casually written user/visitor/viewer/customer reviews, it is more appropriate to use the UserReview type. Review aggregator sites such as Metacritic already separate out the site's user reviews from selected critic reviews that originate from third-party sources.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1589".freeze, label: "CriticReview".freeze, "schema:category": "issue-1589".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1589".freeze, subClassOf: "schema:Review".freeze, type: "rdfs:Class".freeze term :CssSelectorType, comment: %(Text representing a CSS selector.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1672".freeze, label: "CssSelectorType".freeze, "schema:category": "issue-1672".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1672".freeze, subClassOf: "schema:Text".freeze, type: "rdfs:Class".freeze term :CurrencyConversionService, comment: %(A service to convert funds from one currency to another currency.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, label: "CurrencyConversionService".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, subClassOf: "schema:FinancialProduct".freeze, type: "rdfs:Class".freeze term :DDxElement, @@ -11106,16 +11400,16 @@ module RDF::Vocab type: "rdfs:Class".freeze term :DataCatalog, comment: %(A collection of datasets.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass".freeze, equivalentClass: "dcat:Catalog".freeze, label: "DataCatalog".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass".freeze, subClassOf: "schema:CreativeWork".freeze, type: "rdfs:Class".freeze term :DataDownload, comment: %(A dataset in downloadable form.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass".freeze, equivalentClass: "dcat:Distribution".freeze, label: "DataDownload".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass".freeze, subClassOf: "schema:MediaObject".freeze, type: "rdfs:Class".freeze term :DataFeed, @@ -11135,9 +11429,9 @@ module RDF::Vocab type: "rdfs:Class".freeze term :Dataset, comment: %(A body of structured information describing some topic\(s\) of interest.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass".freeze, equivalentClass: ["dcat:Dataset".freeze, "dcmitype:Dataset".freeze, "void:Dataset".freeze], label: "Dataset".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass".freeze, subClassOf: "schema:CreativeWork".freeze, type: "rdfs:Class".freeze term :Date, @@ -11158,8 +11452,8 @@ module RDF::Vocab comment: %(The day of the week, e.g. used to specify to which day the opening hours of an OpeningHoursSpecification refer.

    Originally, URLs from GoodRelations were used \(for Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday plus a special entry for PublicHolidays\); these have now been integrated directly into schema.org.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "DayOfWeek".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, subClassOf: "schema:Enumeration".freeze, type: "rdfs:Class".freeze term :DaySpa, @@ -11178,27 +11472,39 @@ module RDF::Vocab subClassOf: "schema:GovernmentBuilding".freeze, type: "rdfs:Class".freeze term :DefinedRegion, - comment: %(DefinedRegion is a DefinedRegion).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, + comment: %(A DefinedRegion is a geographic area defined by potentially arbitrary \(rather than political, administrative or natural geographical\) criteria. Properties are provided for defining a region by reference to sets of postal codes.

    + +Examples: a delivery destination when shopping. Region where regional pricing is configured.

    + +Requirement 1: +Country: US +States: "NY", "CA"

    + +Requirement 2: +Country: US +PostalCode Set: { [94000-94585], [97000, 97999], [13000, 13599]} +{ [12345, 12345], [78945, 78945], } +Region = state, canton, prefecture, autonomous community...).freeze, label: "DefinedRegion".freeze, "schema:category": "issue-2506".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, subClassOf: "schema:StructuredValue".freeze, type: "rdfs:Class".freeze term :DefinedTerm, comment: %(A word, name, acronym, phrase, etc. with a formal definition. Often used in the context of category or subject classification, glossaries or dictionaries, product or creative work types, etc. Use the name property for the term being defined, use termCode if the term has an alpha-numeric code allocated, use description to provide the definition of the term.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, label: "DefinedTerm".freeze, "schema:category": "issue-894".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :DefinedTermSet, comment: %(A set of defined terms for example a set of categories or a classification scheme, a glossary, dictionary or enumeration.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, label: "DefinedTermSet".freeze, "schema:category": "issue-894".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, subClassOf: "schema:CreativeWork".freeze, type: "rdfs:Class".freeze term :DeleteAction, @@ -11208,8 +11514,8 @@ module RDF::Vocab type: "rdfs:Class".freeze term :DeliveryChargeSpecification, comment: %(The price for the delivery of an offer using a particular delivery method.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "DeliveryChargeSpecification".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, subClassOf: "schema:PriceSpecification".freeze, type: "rdfs:Class".freeze term :DeliveryEvent, @@ -11233,14 +11539,22 @@ module RDF::Vocab
  • http://purl.org/goodrelations/v1#UPS
  • ).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "DeliveryMethod".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, subClassOf: "schema:Enumeration".freeze, type: "rdfs:Class".freeze + term :DeliveryTimeSettings, + comment: %(A DeliveryTimeSettings represents re-usable pieces of shipping information, relating to timing. It is designed for publication on an URL that may be referenced via the shippingSettingsLink property of a OfferShippingSpecification. Several occurrences can be published, distinguished \(and identified/referenced\) by their different values for shippingLabel.).freeze, + label: "DeliveryTimeSettings".freeze, + "schema:category": "issue-2506".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, + subClassOf: "schema:StructuredValue".freeze, + type: "rdfs:Class".freeze term :Demand, comment: %(A demand entity represents the public, not necessarily binding, not necessarily exclusive, announcement by an organization or person to seek a certain type of goods or services. For describing demand using this type, the very same properties used for Offer apply.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "Demand".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :Dentist, @@ -11260,8 +11574,8 @@ module RDF::Vocab type: "rdfs:Class".freeze term :DepositAccount, comment: %(A type of Bank Account with a main purpose of depositing funds to gain interest or other benefits.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, label: "DepositAccount".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, subClassOf: ["schema:BankAccount".freeze, "schema:InvestmentOrDeposit".freeze], type: "rdfs:Class".freeze term :DiagnosticLab, @@ -11330,9 +11644,9 @@ module RDF::Vocab type: "rdfs:Class".freeze term :Distillery, comment: %(A distillery.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/743".freeze, label: "Distillery".freeze, "schema:category": "issue-743".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/743".freeze, subClassOf: "schema:FoodEstablishment".freeze, type: "rdfs:Class".freeze term :DonateAction, @@ -11358,10 +11672,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :Drawing, comment: %(A picture or diagram made with a pencil, pen, or crayon rather than paint.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1448".freeze, label: "Drawing".freeze, "schema:category": "issue-1448".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1448".freeze, subClassOf: "schema:CreativeWork".freeze, type: "rdfs:Class".freeze term :DrinkAction, @@ -11371,8 +11685,8 @@ module RDF::Vocab type: "rdfs:Class".freeze term :DriveWheelConfigurationValue, comment: %(A value indicating which roadwheels will receive torque.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "DriveWheelConfigurationValue".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, subClassOf: "schema:QualitativeValue".freeze, type: "rdfs:Class".freeze term :Drug, @@ -11446,24 +11760,24 @@ module RDF::Vocab type: "rdfs:Class".freeze term :EducationalAudience, comment: %(An EducationalAudience.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass".freeze, label: "EducationalAudience".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass".freeze, subClassOf: "schema:Audience".freeze, type: "rdfs:Class".freeze term :EducationalOccupationalCredential, comment: %(An educational or occupational credential. A diploma, academic degree, certification, qualification, badge, etc., that may be awarded to a person or other entity that meets the requirements defined by the credentialer.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, label: "EducationalOccupationalCredential".freeze, "schema:category": "issue-1779".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, subClassOf: "schema:CreativeWork".freeze, type: "rdfs:Class".freeze term :EducationalOccupationalProgram, comment: %(A program offered by an institution which determines the learning progress to achieve an outcome, usually a credential like a degree or certificate. This would define a discrete set of opportunities \(e.g., job, courses\) that together constitute a program with a clear start, end, set of requirements, and transition to a new occupational opportunity \(e.g., a job\), or sometimes a higher educational opportunity \(e.g., an advanced degree\).).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, label: "EducationalOccupationalProgram".freeze, "schema:category": "issue-2289".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :EducationalOrganization, @@ -11508,17 +11822,17 @@ module RDF::Vocab type: "rdfs:Class".freeze term :EmployerAggregateRating, comment: %(An aggregate rating of an Organization related to its role as an employer.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1689".freeze, label: "EmployerAggregateRating".freeze, "schema:category": "issue-1689".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1689".freeze, subClassOf: "schema:AggregateRating".freeze, type: "rdfs:Class".freeze term :EmployerReview, comment: %(An EmployerReview is a review of an Organization regarding its role as an employer, written by a current or former employee of that organization.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1589".freeze, label: "EmployerReview".freeze, "schema:category": "issue-1576".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1589".freeze, subClassOf: "schema:Review".freeze, type: "rdfs:Class".freeze term :EmploymentAgency, @@ -11538,9 +11852,9 @@ module RDF::Vocab An EndorsementRating may be part of a numeric scale or organized system, but this is not required: having an explicit type for indicating a positive, endorsement rating is particularly useful in the absence of numeric scales as it helps consumers understand that the rating is broadly positive.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1293".freeze, label: "EndorsementRating".freeze, "schema:category": "issue-1293".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1293".freeze, subClassOf: "schema:Rating".freeze, type: "rdfs:Class".freeze term :Energy, @@ -11550,8 +11864,8 @@ module RDF::Vocab type: "rdfs:Class".freeze term :EngineSpecification, comment: %(Information about the engine of the vehicle. A vehicle can have multiple engines represented by multiple engine specification entities.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "EngineSpecification".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, subClassOf: "schema:StructuredValue".freeze, type: "rdfs:Class".freeze term :EntertainmentBusiness, @@ -11561,8 +11875,8 @@ module RDF::Vocab type: "rdfs:Class".freeze term :EntryPoint, comment: %(An entry point, within some Web-based protocol.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass".freeze, label: "EntryPoint".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :Enumeration, @@ -11583,10 +11897,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :EventAttendanceModeEnumeration, comment: %(An EventAttendanceModeEnumeration value is one of potentially several modes of organising an event, relating to whether it is online or offline.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, label: "EventAttendanceModeEnumeration".freeze, "schema:category": "issue-1842".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, subClassOf: "schema:Enumeration".freeze, type: "rdfs:Class".freeze term :EventReservation, @@ -11610,10 +11924,10 @@ module RDF::Vocab worrying about which kinds of series are really event-like enough to call an Event. In general an EventSeries may seem more Event-like when the period of time is compact and when aspects such as location are fixed, but it may also sometimes prove useful to describe a longer-term series as an Event.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/447".freeze, label: "EventSeries".freeze, "schema:category": "issue-447".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/447".freeze, subClassOf: ["schema:Event".freeze, "schema:Series".freeze], type: "rdfs:Class".freeze term :EventStatusType, @@ -11628,10 +11942,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :ExchangeRateSpecification, comment: %(A structured value representing exchange rate.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "ExchangeRateSpecification".freeze, "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], subClassOf: "schema:StructuredValue".freeze, type: "rdfs:Class".freeze term :ExerciseAction, @@ -11657,16 +11971,16 @@ module RDF::Vocab type: "rdfs:Class".freeze term :FAQPage, comment: %(A FAQPage is a WebPage presenting one or more "Frequently asked questions" \(see also QAPage\).).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1723".freeze, label: "FAQPage".freeze, "schema:category": "issue-1723".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1723".freeze, subClassOf: "schema:WebPage".freeze, type: "rdfs:Class".freeze term :FMRadioChannel, comment: %(A radio channel that uses FM.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, label: "FMRadioChannel".freeze, "schema:category": "issue-1004".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, subClassOf: "schema:RadioChannel".freeze, type: "rdfs:Class".freeze term :FastFoodRestaurant, @@ -11686,8 +12000,8 @@ module RDF::Vocab type: "rdfs:Class".freeze term :FinancialProduct, comment: %(A product provided to consumers and businesses by financial institutions such as banks, insurance companies, brokerage firms, consumer finance companies, and investment companies which comprise the financial services industry.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, label: "FinancialProduct".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, subClassOf: "schema:Service".freeze, type: "rdfs:Class".freeze term :FinancialService, @@ -11731,10 +12045,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :FloorPlan, comment: %(A FloorPlan is an explicit representation of a collection of similar accommodations, allowing the provision of common information \(room counts, sizes, layout diagrams\) and offers for rental or sale. In typical use, some ApartmentComplex has an accommodationFloorPlan which is a FloorPlan. A FloorPlan is always in the context of a particular place, either a larger ApartmentComplex or a single Apartment. The visual/spatial aspects of a floor plan \(i.e. room layout, see wikipedia\) can be indicated using image.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, label: "FloorPlan".freeze, "schema:category": "issue-2373".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :Florist, @@ -11777,8 +12091,8 @@ module RDF::Vocab type: "rdfs:Class".freeze term :FoodService, comment: %(A food service, like breakfast, lunch, or dinner.).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "FoodService".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, subClassOf: "schema:Service".freeze, type: "rdfs:Class".freeze term :FundingAgency, @@ -11789,20 +12103,20 @@ module RDF::Vocab
    Examples of funding agencies include ERC, REA, NIH, Bill and Melinda Gates Foundation...
     
    ).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze, label: "FundingAgency".freeze, "schema:category": "issue-383".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze, subClassOf: "schema:Project".freeze, type: "rdfs:Class".freeze term :FundingScheme, comment: %(A FundingScheme combines organizational, project and policy aspects of grant-based funding that sets guidelines, principles and mechanisms to support other kinds of projects and activities. Funding is typically organized via Grant funding. Examples of funding schemes: Swiss Priority Programmes \(SPPs\); EU Framework 7 \(FP7\); Horizon 2020; the NIH-R01 Grant Program; Wellcome institutional strategic support fund. For large scale public sector funding, the management and administration of grant awards is often handled by other, dedicated, organizations - FundingAgencys such as ERC, REA, ...).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze, label: "FundingScheme".freeze, "schema:category": "issue-383".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze, subClassOf: "schema:Organization".freeze, type: "rdfs:Class".freeze term :Fungus, @@ -11874,16 +12188,16 @@ module RDF::Vocab type: "rdfs:Class".freeze term :GeoShape, comment: %(The geographic shape of a place. A GeoShape can be described using several properties whose values are based on latitude/longitude pairs. Either whitespace or commas can be used to separate latitude and longitude; whitespace should be used when writing a list of several such points.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, label: "GeoShape".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, subClassOf: "schema:StructuredValue".freeze, type: "rdfs:Class".freeze term :GeospatialGeometry, comment: %(\(Eventually to be defined as\) a supertype of GeoShape designed to accommodate definitions from Geo-Spatial best practices.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1375".freeze, label: "GeospatialGeometry".freeze, "schema:category": "issue-1375".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1375".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :GiveAction, @@ -11906,10 +12220,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :GovernmentBenefitsType, comment: %(GovernmentBenefitsType enumerates several kinds of government benefits to support the COVID-19 situation. Note that this structure may not capture all benefits offered.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "GovernmentBenefitsType".freeze, "schema:category": "issue-2534".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, subClassOf: "schema:Enumeration".freeze, type: "rdfs:Class".freeze term :GovernmentBuilding, @@ -11944,10 +12258,10 @@ module RDF::Vocab Grants support activities directed towards some agreed collective goals, often but not always organized as Projects. Long-lived projects are sometimes sponsored by a variety of grants over time, but it is also common for a project to be associated with a single grant.

    The amount of a Grant is represented using amount as a MonetaryAmount.).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze, label: "Grant".freeze, "schema:category": "issue-383".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :GroceryStore, @@ -11957,10 +12271,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :Guide, comment: %(Guide is a page or article that recommend specific products or services, or aspects of a thing for a user to consider. A Guide may represent a Buying Guide and detail aspects of products or services for a user to consider. A Guide may represent a Product Guide and recommend specific products or services. A Guide may represent a Ranked List and recommend specific products or services with ranking.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2405".freeze, label: "Guide".freeze, "schema:category": "issue-2405".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2405".freeze, subClassOf: "schema:CreativeWork".freeze, type: "rdfs:Class".freeze term :HVACBusiness, @@ -11970,10 +12284,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :Hackathon, comment: %(A hackathon event.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2526".freeze, label: "Hackathon".freeze, "schema:category": "issue-2526".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2526".freeze, subClassOf: "schema:Event".freeze, type: "rdfs:Class".freeze term :HairSalon, @@ -11993,10 +12307,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :HealthAspectEnumeration, comment: %(HealthAspectEnumeration enumerates several aspects of health content online, each of which might be described using hasHealthAspect and HealthTopicContent.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "HealthAspectEnumeration".freeze, "schema:category": "issue-2374".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, subClassOf: "schema:Enumeration".freeze, type: "rdfs:Class".freeze term :HealthClub, @@ -12006,42 +12320,42 @@ module RDF::Vocab type: "rdfs:Class".freeze term :HealthInsurancePlan, comment: %(A US-style health insurance plan, including PPOs, EPOs, and HMOs.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "HealthInsurancePlan".freeze, "schema:category": "issue-1062".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :HealthPlanCostSharingSpecification, comment: %(A description of costs to the patient under a given network or formulary.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "HealthPlanCostSharingSpecification".freeze, "schema:category": "issue-1062".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :HealthPlanFormulary, comment: %(For a given health insurance plan, the specification for costs and coverage of prescription drugs.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "HealthPlanFormulary".freeze, "schema:category": "issue-1062".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :HealthPlanNetwork, comment: %(A US-style health insurance plan network.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, label: "HealthPlanNetwork".freeze, "schema:category": "issue-1062".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :HealthTopicContent, comment: %(HealthTopicContent is WebContent that is about some aspect of a health topic, e.g. a condition, its symptoms or treatments. Such content may be comprised of several parts or sections and use different types of media. Multiple instances of WebContent \(and hence HealthTopicContent\) can be related using hasPart / isPartOf where there is some kind of content hierarchy, and their content described with about and mentions e.g. building upon the existing MedicalCondition vocabulary.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "HealthTopicContent".freeze, "schema:category": "issue-2374".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, subClassOf: "schema:WebContent".freeze, type: "rdfs:Class".freeze term :HighSchool, @@ -12089,22 +12403,22 @@ module RDF::Vocab comment: %(A hotel is an establishment that provides lodging paid on a short-term basis \(Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Hotel\).

    See also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "Hotel".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, subClassOf: "schema:LodgingBusiness".freeze, type: "rdfs:Class".freeze term :HotelRoom, comment: %(A hotel room is a single room in a hotel.

    See also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "HotelRoom".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, subClassOf: "schema:Room".freeze, type: "rdfs:Class".freeze term :House, comment: %(A house is a building or structure that has the ability to be occupied for habitation by humans or other creatures \(Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/House\).).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "House".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, subClassOf: "schema:Accommodation".freeze, type: "rdfs:Class".freeze term :HousePainter, @@ -12181,8 +12495,8 @@ module RDF::Vocab type: "rdfs:Class".freeze term :IndividualProduct, comment: %(A single, identifiable product instance \(e.g. a laptop with a particular serial number\).).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "IndividualProduct".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, subClassOf: "schema:Product".freeze, type: "rdfs:Class".freeze term :InfectiousAgentClass, @@ -12244,16 +12558,16 @@ module RDF::Vocab type: "rdfs:Class".freeze term :InvestmentFund, comment: %(A company or fund that gathers capital from a number of investors to create a pool of money that is then re-invested into stocks, bonds and other assets.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "InvestmentFund".freeze, "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], subClassOf: "schema:InvestmentOrDeposit".freeze, type: "rdfs:Class".freeze term :InvestmentOrDeposit, comment: %(A type of financial product that typically requires the client to transfer funds to a financial service in return for potential beneficial financial return.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, label: "InvestmentOrDeposit".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, subClassOf: "schema:FinancialProduct".freeze, type: "rdfs:Class".freeze term :InviteAction, @@ -12351,11 +12665,11 @@ module RDF::Vocab type: "rdfs:Class".freeze term :LegalForceStatus, comment: %(A list of possible statuses for the legal force of a legislation.).freeze, - "dc:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], exactMatch: "http://data.europa.eu/eli/ontology#InForce".freeze, label: "LegalForceStatus".freeze, "schema:category": "issue-1156".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], subClassOf: "schema:Enumeration".freeze, type: "rdfs:Class".freeze term :LegalService, @@ -12367,28 +12681,28 @@ module RDF::Vocab type: "rdfs:Class".freeze term :LegalValueLevel, comment: %(A list of possible levels for the legal validity of a legislation.).freeze, - "dc:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "LegalValueLevel".freeze, "schema:category": "issue-1156".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], "skos:closeMatch": "http://data.europa.eu/eli/ontology#LegalValue".freeze, subClassOf: "schema:Enumeration".freeze, type: "rdfs:Class".freeze term :Legislation, comment: %(A legal document such as an act, decree, bill, etc. \(enforceable or not\) or a component of a legal act \(like an article\).).freeze, - "dc:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "Legislation".freeze, "schema:category": "issue-1156".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], "skos:closeMatch": ["http://data.europa.eu/eli/ontology#LegalExpression".freeze, "http://data.europa.eu/eli/ontology#LegalResource".freeze], subClassOf: "schema:CreativeWork".freeze, type: "rdfs:Class".freeze term :LegislationObject, comment: %(A specific object or file containing a Legislation. Note that the same Legislation can be published in multiple files. For example, a digitally signed PDF, a plain PDF and an HTML version.).freeze, - "dc:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], label: "LegislationObject".freeze, "schema:category": "issue-1156".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], "skos:closeMatch": "http://data.europa.eu/eli/ontology#Format".freeze, subClassOf: ["schema:Legislation".freeze, "schema:MediaObject".freeze], type: "rdfs:Class".freeze @@ -12416,10 +12730,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :LibrarySystem, comment: %(A LibrarySystem is a collaborative system amongst several libraries.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1495".freeze, label: "LibrarySystem".freeze, "schema:category": "issue-1495".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1495".freeze, subClassOf: "schema:Organization".freeze, type: "rdfs:Class".freeze term :LifestyleModification, @@ -12441,10 +12755,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :LinkRole, comment: %(A Role that represents a Web link e.g. as expressed via the 'url' property. Its linkRelationship property can indicate URL-based and plain textual link types e.g. those in IANA link registry or others such as 'amphtml'. This structure provides a placeholder where details from HTML's link element can be represented outside of HTML, e.g. in JSON-LD feeds.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1045".freeze, label: "LinkRole".freeze, "schema:category": "issue-1045".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1045".freeze, subClassOf: "schema:Role".freeze, type: "rdfs:Class".freeze term :LiquorStore, @@ -12474,8 +12788,8 @@ module RDF::Vocab type: "rdfs:Class".freeze term :LoanOrCredit, comment: %(A financial product for the loaning of an amount of money under agreed terms and charges.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, label: "LoanOrCredit".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, subClassOf: "schema:FinancialProduct".freeze, type: "rdfs:Class".freeze term :LocalBusiness, @@ -12486,8 +12800,8 @@ module RDF::Vocab type: "rdfs:Class".freeze term :LocationFeatureSpecification, comment: %(Specifies a location feature by providing a structured value representing a feature of an accommodation as a property-value pair of varying degrees of formality.).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "LocationFeatureSpecification".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, subClassOf: "schema:PropertyValue".freeze, type: "rdfs:Class".freeze term :LockerDelivery, @@ -12525,10 +12839,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :Manuscript, comment: %(A book, document, or piece of music written by hand rather than typed or printed.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1448".freeze, label: "Manuscript".freeze, "schema:category": "issue-1448".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1448".freeze, subClassOf: "schema:CreativeWork".freeze, type: "rdfs:Class".freeze term :Map, @@ -12564,10 +12878,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :MediaManipulationRatingEnumeration, comment: %(\(editorial work in progress, this definition is incomplete and unreviewed\) MediaManipulationRatingEnumeration classifies a number of ways in which a media item \(video, image, audio\) can be manipulated, taking into account the context within which they are published or presented.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, label: "MediaManipulationRatingEnumeration".freeze, "schema:category": "issue-2450".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, subClassOf: "schema:Enumeration".freeze, type: "rdfs:Class".freeze term :MediaObject, @@ -12579,17 +12893,17 @@ module RDF::Vocab comment: %(\(editorial work in progress, this definition is incomplete and unreviewed\) A MediaReview is a more specialized form of Review dedicated to the evaluation of media content online, typically in the context of fact-checking and misinformation. For more general reviews of media in the broader sense, use UserReview, CriticReview or other Review types.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, label: "MediaReview".freeze, "schema:category": "issue-2450".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, subClassOf: "schema:Review".freeze, type: "rdfs:Class".freeze term :MediaSubscription, comment: %(A subscription which allows a user to access media including audio, video, books, etc.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, label: "MediaSubscription".freeze, "schema:category": "issue-1741".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :MedicalAudience, @@ -12829,9 +13143,9 @@ module RDF::Vocab type: "rdfs:Class".freeze term :MedicalTrialDesign, comment: %(Design models for medical trials. Enumerated type.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc".freeze, label: "MedicalTrialDesign".freeze, "schema:isPartOf": "http://health-lifesci.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc".freeze, subClassOf: ["schema:Enumeration".freeze, "schema:MedicalEnumeration".freeze], type: "rdfs:Class".freeze term :MedicalWebPage, @@ -12850,8 +13164,8 @@ module RDF::Vocab comment: %(A meeting room, conference room, or conference hall is a room provided for singular events such as business conferences and meetings \(Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Conference_hall\).

    See also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "MeetingRoom".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, subClassOf: "schema:Room".freeze, type: "rdfs:Class".freeze term :MensClothingStore, @@ -12876,18 +13190,18 @@ module RDF::Vocab type: "rdfs:Class".freeze term :MerchantReturnEnumeration, comment: %(MerchantReturnEnumeration enumerates several kinds of product return policy. Note that this structure may not capture all aspects of the policy.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "MerchantReturnEnumeration".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, subClassOf: "schema:Enumeration".freeze, type: "rdfs:Class".freeze term :MerchantReturnPolicy, comment: %(A MerchantReturnPolicy provides information about product return policies associated with an Organization or Product.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "MerchantReturnPolicy".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :Message, @@ -12912,39 +13226,39 @@ module RDF::Vocab type: "rdfs:Class".freeze term :MonetaryAmount, comment: %(A monetary value or range. This type can be used to describe an amount of money such as $50 USD, or a range as in describing a bank account being suitable for a balance between £1,000 and £1,000,000 GBP, or the value of a salary, etc. It is recommended to use PriceSpecification Types to describe the price of an Offer, Invoice, etc.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, label: "MonetaryAmount".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, subClassOf: "schema:StructuredValue".freeze, type: "rdfs:Class".freeze term :MonetaryAmountDistribution, comment: %(A statistical distribution of monetary amounts.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "MonetaryAmountDistribution".freeze, "schema:category": "issue-1698".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, subClassOf: "schema:QuantitativeValueDistribution".freeze, type: "rdfs:Class".freeze term :MonetaryGrant, comment: %(A monetary grant.).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze, label: "MonetaryGrant".freeze, "schema:category": "issue-383".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze, subClassOf: "schema:Grant".freeze, type: "rdfs:Class".freeze term :MoneyTransfer, comment: %(The act of transferring money from one place to another place. This may occur electronically or physically.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "MoneyTransfer".freeze, "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], subClassOf: "schema:TransferAction".freeze, type: "rdfs:Class".freeze term :MortgageLoan, comment: %(A loan in which property or real estate is used as collateral. \(A loan securitized against some real estate.\)).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "MortgageLoan".freeze, "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], subClassOf: "schema:LoanOrCredit".freeze, type: "rdfs:Class".freeze term :Mosque, @@ -12961,9 +13275,9 @@ module RDF::Vocab type: "rdfs:Class".freeze term :Motorcycle, comment: %(A motorcycle or motorbike is a single-track, two-wheeled motor vehicle.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "Motorcycle".freeze, "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, subClassOf: "schema:Vehicle".freeze, type: "rdfs:Class".freeze term :MotorcycleDealer, @@ -12978,9 +13292,9 @@ module RDF::Vocab type: "rdfs:Class".freeze term :MotorizedBicycle, comment: %(A motorized bicycle is a bicycle with an attached motor used to power the vehicle, or to assist with pedaling.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "MotorizedBicycle".freeze, "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, subClassOf: "schema:Vehicle".freeze, type: "rdfs:Class".freeze term :Mountain, @@ -13053,20 +13367,20 @@ module RDF::Vocab type: "rdfs:Class".freeze term :MusicAlbumProductionType, comment: %(Classification of the album by it's type of content: soundtrack, live album, studio album, etc.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "MusicAlbumProductionType".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, subClassOf: "schema:Enumeration".freeze, type: "rdfs:Class".freeze term :MusicAlbumReleaseType, comment: %(The kind of release which this album is: single, EP or album.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "MusicAlbumReleaseType".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, subClassOf: "schema:Enumeration".freeze, type: "rdfs:Class".freeze term :MusicComposition, comment: %(A musical composition.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "MusicComposition".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, subClassOf: "schema:CreativeWork".freeze, type: "rdfs:Class".freeze term :MusicEvent, @@ -13091,14 +13405,14 @@ module RDF::Vocab type: "rdfs:Class".freeze term :MusicRelease, comment: %(A MusicRelease is a specific release of a music album.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "MusicRelease".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, subClassOf: "schema:MusicPlaylist".freeze, type: "rdfs:Class".freeze term :MusicReleaseFormatType, comment: %(Format of this release \(the type of recording media used, ie. compact disc, digital media, LP, etc.\).).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "MusicReleaseFormatType".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, subClassOf: "schema:Enumeration".freeze, type: "rdfs:Class".freeze term :MusicStore, @@ -13121,6 +13435,14 @@ module RDF::Vocab label: "NGO".freeze, subClassOf: "schema:Organization".freeze, type: "rdfs:Class".freeze + term :NLNonprofitType, + comment: %(NLNonprofitType: Non-profit organization type originating from the Netherlands.).freeze, + label: "NLNonprofitType".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + subClassOf: "schema:NonprofitType".freeze, + type: "rdfs:Class".freeze term :NailSalon, comment: %(A nail salon.).freeze, label: "NailSalon".freeze, @@ -13136,23 +13458,23 @@ module RDF::Vocab comment: %(A NewsArticle is an article whose content reports news, or provides background context and supporting materials for understanding the news.

    A more detailed overview of schema.org News markup is also available.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP-draws".freeze], label: "NewsArticle".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP-draws".freeze], subClassOf: "schema:Article".freeze, type: "rdfs:Class".freeze term :NewsMediaOrganization, comment: %(A News/Media organization such as a newspaper or TV station.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "NewsMediaOrganization".freeze, "schema:category": "issue-1525".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], subClassOf: "schema:Organization".freeze, type: "rdfs:Class".freeze term :Newspaper, comment: %(A publication containing information about varied topics that are pertinent to general information, a geographic area, or a specific subject matter \(i.e. business, culture, education\). Often published daily.).freeze, - "dc:source": "http://www.productontology.org/id/Newspaper".freeze, label: "Newspaper".freeze, "schema:isPartOf": "http://bib.schema.org".freeze, + "schema:source": "http://www.productontology.org/id/Newspaper".freeze, subClassOf: "schema:Periodical".freeze, type: "rdfs:Class".freeze term :NightClub, @@ -13160,6 +13482,14 @@ module RDF::Vocab label: "NightClub".freeze, subClassOf: "schema:EntertainmentBusiness".freeze, type: "rdfs:Class".freeze + term :NonprofitType, + comment: %(NonprofitType enumerates several kinds of official non-profit types of which a non-profit organization can be.).freeze, + label: "NonprofitType".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + subClassOf: "schema:Enumeration".freeze, + type: "rdfs:Class".freeze term :Notary, comment: %(A notary.).freeze, label: "Notary".freeze, @@ -13190,17 +13520,17 @@ module RDF::Vocab term :Observation, comment: %(Instances of the class Observation are used to specify observations about an entity \(which may or may not be an instance of a StatisticalPopulation\), at a particular time. The principal properties of an Observation are observedNode, measuredProperty, measuredValue \(or median, etc.\) and observationDate \(measuredProperty properties can, but need not always, be W3C RDF Data Cube "measure properties", as in the lifeExpectancy example\). See also StatisticalPopulation, and the data and datasets overview for more details.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, label: "Observation".freeze, "schema:category": "issue-2291".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :Occupation, comment: %(A profession, may involve prolonged training and/or a formal qualification.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "Occupation".freeze, "schema:category": "issue-1698".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :OccupationalTherapy, @@ -13220,8 +13550,8 @@ module RDF::Vocab Note: As the businessFunction property, which identifies the form of offer \(e.g. sell, lease, repair, dispose\), defaults to http://purl.org/goodrelations/v1#Sell; an Offer without a defined businessFunction value can be assumed to be an offer to sell.

    For GTIN-related fields, see Check Digit calculator and validation guide from GS1.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "Offer".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :OfferCatalog, @@ -13233,20 +13563,20 @@ module RDF::Vocab comment: %(An OfferForLease in Schema.org represents an Offer to lease out something, i.e. an Offer whose businessFunction is lease out. See Good Relations for background on the underlying concepts.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2348".freeze, label: "OfferForLease".freeze, "schema:category": "issue-2348".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2348".freeze, subClassOf: "schema:Offer".freeze, type: "rdfs:Class".freeze term :OfferForPurchase, comment: %(An OfferForPurchase in Schema.org represents an Offer to sell something, i.e. an Offer whose businessFunction is sell. See Good Relations for background on the underlying concepts.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2348".freeze, label: "OfferForPurchase".freeze, "schema:category": "issue-2348".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2348".freeze, subClassOf: "schema:Offer".freeze, type: "rdfs:Class".freeze term :OfferItemCondition, @@ -13267,10 +13597,10 @@ module RDF::Vocab e.g. Cheaper and slower: $5 in 5-7days or Fast and expensive: $15 in 1-2 days).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, label: "OfferShippingDetails".freeze, "schema:category": "issue-2506".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, subClassOf: "schema:StructuredValue".freeze, type: "rdfs:Class".freeze term :OfficeEquipmentStore, @@ -13289,16 +13619,16 @@ module RDF::Vocab The place is open if the opens property is specified, and closed otherwise.

    If the value for the closes property is less than the value for the opens property then the hour range is assumed to span over the next day.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "OpeningHoursSpecification".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, subClassOf: "schema:StructuredValue".freeze, type: "rdfs:Class".freeze term :OpinionNewsArticle, comment: %(An OpinionNewsArticle is a NewsArticle that primarily expresses opinions rather than journalistic reporting of news and events. For example, a NewsArticle consisting of a column or Blog/BlogPosting entry in the Opinions section of a news publication.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "OpinionNewsArticle".freeze, "schema:category": "issue-1525".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], subClassOf: "schema:NewsArticle".freeze, type: "rdfs:Class".freeze term :Optician, @@ -13349,8 +13679,8 @@ module RDF::Vocab type: "rdfs:Class".freeze term :OwnershipInfo, comment: %(A structured value providing information about when a certain organization or person owned a certain product.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "OwnershipInfo".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, subClassOf: "schema:StructuredValue".freeze, type: "rdfs:Class".freeze term :PaintAction, @@ -13385,8 +13715,8 @@ module RDF::Vocab
  • http://purl.org/goodrelations/v1#UPS
  • ).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "ParcelService".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, subClassOf: "schema:DeliveryMethod".freeze, type: "rdfs:Class".freeze term :ParentAudience, @@ -13429,14 +13759,14 @@ module RDF::Vocab type: "rdfs:Class".freeze term :PaymentCard, comment: %(A payment method using a credit, debit, store or other card to associate the payment with an account.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, label: "PaymentCard".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, subClassOf: ["schema:FinancialProduct".freeze, "schema:PaymentMethod".freeze], type: "rdfs:Class".freeze term :PaymentChargeSpecification, comment: %(The costs of settling the payment using a particular payment method.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "PaymentChargeSpecification".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, subClassOf: "schema:PriceSpecification".freeze, type: "rdfs:Class".freeze term :PaymentMethod, @@ -13456,14 +13786,14 @@ module RDF::Vocab
  • http://purl.org/goodrelations/v1#PaySwarm
  • ).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "PaymentMethod".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, subClassOf: "schema:Enumeration".freeze, type: "rdfs:Class".freeze term :PaymentService, comment: %(A Service to transfer funds from a person or organization to a beneficiary person or organization.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, label: "PaymentService".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, subClassOf: "schema:FinancialProduct".freeze, type: "rdfs:Class".freeze term :PaymentStatusType, @@ -13500,9 +13830,9 @@ module RDF::Vocab comment: %(A publication in any medium issued in successive parts bearing numerical or chronological designations and intended, such as a magazine, scholarly journal, or newspaper to continue indefinitely.

    See also blog post.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, equivalentClass: "bibo:Periodical".freeze, label: "Periodical".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, subClassOf: "schema:CreativeWorkSeries".freeze, type: "rdfs:Class".freeze term :Permit, @@ -13512,9 +13842,9 @@ module RDF::Vocab type: "rdfs:Class".freeze term :Person, comment: %(A person \(alive, dead, undead, or fictional\).).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, equivalentClass: "foaf:Person".freeze, label: "Person".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, subClassOf: "schema:Thing".freeze, type: "rdfs:Class".freeze term :PetStore, @@ -13583,10 +13913,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :Play, comment: %(A play is a form of literature, usually consisting of dialogue between characters, intended for theatrical performance rather than just reading. Note the peformance of a Play would be a TheaterEvent - the Play being the workPerformed.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1816".freeze, label: "Play".freeze, "schema:category": "issue-1816".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1816".freeze, subClassOf: "schema:CreativeWork".freeze, type: "rdfs:Class".freeze term :PlayAction, @@ -13614,26 +13944,26 @@ module RDF::Vocab type: "rdfs:Class".freeze term :PodcastEpisode, comment: %(A single episode of a podcast series.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/373".freeze, label: "PodcastEpisode".freeze, "schema:category": "issue-373".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/373".freeze, subClassOf: "schema:Episode".freeze, type: "rdfs:Class".freeze term :PodcastSeason, comment: %(A single season of a podcast. Many podcasts do not break down into separate seasons. In that case, PodcastSeries should be used.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/373".freeze, label: "PodcastSeason".freeze, "schema:category": "issue-373".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/373".freeze, subClassOf: "schema:CreativeWorkSeason".freeze, type: "rdfs:Class".freeze term :PodcastSeries, comment: %(A podcast is an episodic series of digital audio or video files which a user can download and listen to.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/373".freeze, label: "PodcastSeries".freeze, "schema:category": "issue-373".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/373".freeze, subClassOf: "schema:CreativeWorkSeries".freeze, type: "rdfs:Class".freeze term :PoliceStation, @@ -13656,19 +13986,27 @@ module RDF::Vocab label: "PostalAddress".freeze, subClassOf: "schema:ContactPoint".freeze, type: "rdfs:Class".freeze + term :PostalCodeRangeSpecification, + comment: %(Indicates a range of postalcodes, usually defined as the set of valid codes between postalCodeBegin and postalCodeEnd, inclusively.).freeze, + label: "PostalCodeRangeSpecification".freeze, + "schema:category": "issue-2506".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, + subClassOf: "schema:StructuredValue".freeze, + type: "rdfs:Class".freeze term :Poster, comment: %(A large, usually printed placard, bill, or announcement, often illustrated, that is posted to advertise or publicize something.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1448".freeze, label: "Poster".freeze, "schema:category": "issue-1448".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1448".freeze, subClassOf: "schema:CreativeWork".freeze, type: "rdfs:Class".freeze term :PreOrderAction, comment: %(An agent orders a \(not yet released\) object/product/service to be delivered/sent.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1125".freeze, label: "PreOrderAction".freeze, "schema:category": "issue-1125".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1125".freeze, subClassOf: "schema:TradeAction".freeze, type: "rdfs:Class".freeze term :PrependAction, @@ -13694,8 +14032,8 @@ module RDF::Vocab type: "rdfs:Class".freeze term :PriceSpecification, comment: %(A structured value representing a price or price range. Typically, only the subclasses of this type are used for markup. It is recommended to use MonetaryAmount to describe independent amounts of money such as a salary, credit card limits, etc.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "PriceSpecification".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, subClassOf: "schema:StructuredValue".freeze, type: "rdfs:Class".freeze term :Prion, @@ -13705,31 +14043,31 @@ module RDF::Vocab type: "schema:InfectiousAgentClass".freeze term :Product, comment: %(Any offered product or service. For example: a pair of shoes; a concert ticket; the rental of a car; a haircut; or an episode of a TV show streamed online.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, label: "Product".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, subClassOf: "schema:Thing".freeze, type: "rdfs:Class".freeze term :ProductModel, comment: %(A datasheet or vendor specification of a product \(in the sense of a prototypical description\).).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "ProductModel".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, subClassOf: "schema:Product".freeze, type: "rdfs:Class".freeze term :ProductReturnEnumeration, comment: %(ProductReturnEnumeration enumerates several kinds of product return policy. Note that this structure may not capture all aspects of the policy.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "ProductReturnEnumeration".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://attic.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, "schema:supersededBy": "schema:MerchantReturnEnumeration".freeze, subClassOf: "schema:Enumeration".freeze, type: "rdfs:Class".freeze term :ProductReturnPolicy, comment: %(A ProductReturnPolicy provides information about product return policies associated with an Organization or Product.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "ProductReturnPolicy".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://attic.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, "schema:supersededBy": "schema:MerchantReturnPolicy".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze @@ -13755,18 +14093,18 @@ module RDF::Vocab term :Project, comment: %(An enterprise \(potentially individual but typically collaborative\), planned to achieve a particular aim. Use properties from Organization, subOrganization/parentOrganization to indicate project sub-structures.).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze, label: "Project".freeze, "schema:category": "issue-383".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze, subClassOf: "schema:Organization".freeze, type: "rdfs:Class".freeze term :PronounceableText, comment: %(Data type: PronounceableText.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2108".freeze, label: "PronounceableText".freeze, "schema:category": "issue-2108".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2108".freeze, subClassOf: "schema:Text".freeze, type: "rdfs:Class".freeze term :Property, @@ -13780,14 +14118,14 @@ module RDF::Vocab comment: %(A property-value pair, e.g. representing a feature of a product or place. Use the 'name' property for the name of the property. If there is an additional human-readable version of the value, put that into the 'description' property.

    Always use specific schema.org properties when a\) they exist and b\) you can populate them. Using PropertyValue as a substitute will typically not trigger the same effect as using the original, specific property.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "PropertyValue".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, subClassOf: "schema:StructuredValue".freeze, type: "rdfs:Class".freeze term :PropertyValueSpecification, comment: %(A Property value specification.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass".freeze, label: "PropertyValueSpecification".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :Protozoa, @@ -13808,10 +14146,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :PublicToilet, comment: %(A public toilet is a room or small building containing one or more toilets \(and possibly also urinals\) which is available for use by the general public, or by customers or employees of certain businesses.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1624".freeze, label: "PublicToilet".freeze, "schema:category": "issue-1624".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1624".freeze, subClassOf: "schema:CivicStructure".freeze, type: "rdfs:Class".freeze term :PublicationEvent, @@ -13823,17 +14161,17 @@ module RDF::Vocab comment: %(A part of a successively published publication such as a periodical or publication volume, often numbered, usually containing a grouping of works such as articles.

    See also blog post.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, equivalentClass: "bibo:Issue".freeze, label: "PublicationIssue".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, subClassOf: "schema:CreativeWork".freeze, type: "rdfs:Class".freeze term :PublicationVolume, comment: %(A part of a successively published publication such as a periodical or multi-volume work, often numbered. It may represent a time span, such as a year.

    See also blog post.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, label: "PublicationVolume".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, subClassOf: "schema:CreativeWork".freeze, type: "rdfs:Class".freeze term :QAPage, @@ -13843,21 +14181,21 @@ module RDF::Vocab type: "rdfs:Class".freeze term :QualitativeValue, comment: %(A predefined value for a product characteristic, e.g. the power cord plug type 'US' or the garment sizes 'S', 'M', 'L', and 'XL'.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "QualitativeValue".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, subClassOf: "schema:Enumeration".freeze, type: "rdfs:Class".freeze term :QuantitativeValue, comment: %(A point value or interval for product characteristics and other purposes.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "QuantitativeValue".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, subClassOf: "schema:StructuredValue".freeze, type: "rdfs:Class".freeze term :QuantitativeValueDistribution, comment: %(A statistical distribution of values.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, label: "QuantitativeValueDistribution".freeze, "schema:category": "issue-1698".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, subClassOf: "schema:StructuredValue".freeze, type: "rdfs:Class".freeze term :Quantity, @@ -13867,16 +14205,16 @@ module RDF::Vocab type: "rdfs:Class".freeze term :Question, comment: %(A specific question - e.g. from a user seeking answers online, or collected in a Frequently Asked Questions \(FAQ\) document.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange".freeze, label: "Question".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange".freeze, subClassOf: "schema:CreativeWork".freeze, type: "rdfs:Class".freeze term :Quotation, comment: %(A quotation. Often but not necessarily from some written work, attributable to a real world author and - if associated with a fictional character - to any fictional Person. Use isBasedOn to link to source/origin. The recordedIn property can be used to reference a Quotation from an Event.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/271".freeze, label: "Quotation".freeze, "schema:category": "issue-271".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/271".freeze, subClassOf: "schema:CreativeWork".freeze, type: "rdfs:Class".freeze term :QuoteAction, @@ -13897,10 +14235,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :RadioBroadcastService, comment: %(A delivery service through which radio content is provided via broadcast over the air or online.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2109".freeze, label: "RadioBroadcastService".freeze, "schema:category": "issue-2109".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2109".freeze, subClassOf: "schema:BroadcastService".freeze, type: "rdfs:Class".freeze term :RadioChannel, @@ -13956,10 +14294,10 @@ module RDF::Vocab term :RealEstateListing, comment: %(A RealEstateListing is a listing that describes one or more real-estate Offers \(whose businessFunction is typically to lease out, or to sell\). The RealEstateListing type itself represents the overall listing, as manifested in some WebPage.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2348".freeze, label: "RealEstateListing".freeze, "schema:category": "issue-2348".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2348".freeze, subClassOf: "schema:WebPage".freeze, type: "rdfs:Class".freeze term :ReceiveAction, @@ -13982,10 +14320,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :Recommendation, comment: %(Recommendation is a type of Review that suggests or proposes something as the best option or best course of action. Recommendations may be for products or services, or other concrete things, as in the case of a ranked list or product guide. A Guide may list multiple recommendations for different categories. For example, in a Guide about which TVs to buy, the author may have several Recommendations.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2405".freeze, label: "Recommendation".freeze, "schema:category": "issue-2405".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2405".freeze, subClassOf: "schema:Review".freeze, type: "rdfs:Class".freeze term :RecommendedDoseSchedule, @@ -14001,10 +14339,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :RefundTypeEnumeration, comment: %(RefundTypeEnumeration enumerates several kinds of product return refund types.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "RefundTypeEnumeration".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, subClassOf: "schema:Enumeration".freeze, type: "rdfs:Class".freeze term :RegisterAction, @@ -14047,10 +14385,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :RepaymentSpecification, comment: %(A structured value representing repayment.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], label: "RepaymentSpecification".freeze, "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], subClassOf: "schema:StructuredValue".freeze, type: "rdfs:Class".freeze term :ReplaceAction, @@ -14084,10 +14422,10 @@ module RDF::Vocab The ReportageNewsArticle type is based on a stricter ideal for "news" as a work of journalism, with articles based on factual information either observed or verified by the author, or reported and verified from knowledgeable sources. This often includes perspectives from multiple viewpoints on a particular issue \(distinguishing news reports from public relations or propaganda\). News reports in the ReportageNewsArticle sense de-emphasize the opinion of the author, with commentary and value judgements typically expressed elsewhere.

    A ReportageNewsArticle which goes deeper into analysis can also be marked with an additional type of AnalysisNewsArticle.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "ReportageNewsArticle".freeze, "schema:category": "issue-1525".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], subClassOf: "schema:NewsArticle".freeze, type: "rdfs:Class".freeze term :ReportedDoseSchedule, @@ -14098,10 +14436,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :ResearchProject, comment: %(A Research project.).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze, label: "ResearchProject".freeze, "schema:category": "issue-383".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab".freeze, subClassOf: "schema:Project".freeze, type: "rdfs:Class".freeze term :Reservation, @@ -14147,8 +14485,8 @@ module RDF::Vocab comment: %(A resort is a place used for relaxation or recreation, attracting visitors for holidays or vacations. Resorts are places, towns or sometimes commercial establishment operated by a single company \(Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Resort\).

    See also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "Resort".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, subClassOf: "schema:LodgingBusiness".freeze, type: "rdfs:Class".freeze term :Restaurant, @@ -14173,10 +14511,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :ReturnFeesEnumeration, comment: %(ReturnFeesEnumeration expresses policies for return fees.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "ReturnFeesEnumeration".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, subClassOf: "schema:Enumeration".freeze, type: "rdfs:Class".freeze term :Review, @@ -14191,10 +14529,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :ReviewNewsArticle, comment: %(A NewsArticle and CriticReview providing a professional critic's assessment of a service, product, performance, or artistic or literary work.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "ReviewNewsArticle".freeze, "schema:category": "issue-1525".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], subClassOf: ["schema:CriticReview".freeze, "schema:NewsArticle".freeze], type: "rdfs:Class".freeze term :RiverBodyOfWater, @@ -14218,8 +14556,8 @@ module RDF::Vocab comment: %(A room is a distinguishable space within a structure, usually separated from other spaces by interior walls. \(Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Room\).

    See also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "Room".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, subClassOf: "schema:Accommodation".freeze, type: "rdfs:Class".freeze term :RsvpAction, @@ -14239,20 +14577,20 @@ module RDF::Vocab type: "rdfs:Class".freeze term :SatiricalArticle, comment: %(An Article whose content is primarily [satirical] in nature, i.e. unlikely to be literally true. A satirical article is sometimes but not necessarily also a NewsArticle. ScholarlyArticles are also sometimes satirized.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], label: "SatiricalArticle".freeze, "schema:category": "issue-1525".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], subClassOf: "schema:Article".freeze, type: "rdfs:Class".freeze term :Schedule, comment: %(A schedule defines a repeating time period used to describe a regularly occurring Event. At a minimum a schedule will specify repeatFrequency which describes the interval between occurences of the event. Additional information can be provided to specify the schedule more precisely. This includes identifying the day\(s\) of the week or month when the recurring event will take place, in addition to its start and end time. Schedules may also have start and end dates to indicate when they are active, e.g. to define a limited calendar of events.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, label: "Schedule".freeze, "schema:category": "issue-1457".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :ScheduleAction, @@ -14279,10 +14617,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :SchoolDistrict, comment: %(A School District is an administrative area for the administration of schools.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2500".freeze, label: "SchoolDistrict".freeze, "schema:category": "issue-2500".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2500".freeze, subClassOf: "schema:AdministrativeArea".freeze, type: "rdfs:Class".freeze term :ScreeningEvent, @@ -14371,12 +14709,28 @@ module RDF::Vocab type: "rdfs:Class".freeze term :SheetMusic, comment: %(Printed music, as opposed to performed or recorded music.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1448".freeze, label: "SheetMusic".freeze, "schema:category": "issue-1448".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1448".freeze, subClassOf: "schema:CreativeWork".freeze, type: "rdfs:Class".freeze + term :ShippingDeliveryTime, + comment: %(ShippingDeliveryTime provides various pieces of information about delivery times for shipping.).freeze, + label: "ShippingDeliveryTime".freeze, + "schema:category": "issue-2506".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, + subClassOf: "schema:StructuredValue".freeze, + type: "rdfs:Class".freeze + term :ShippingRateSettings, + comment: %(A ShippingRateSettings represents re-usable pieces of shipping information. It is designed for publication on an URL that may be referenced via the shippingSettingsLink property of an OfferShippingDetails. Several occurrences can be published, distinguished and matched \(i.e. identified/referenced\) by their different values for shippingLabel.).freeze, + label: "ShippingRateSettings".freeze, + "schema:category": "issue-2506".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, + subClassOf: "schema:StructuredValue".freeze, + type: "rdfs:Class".freeze term :ShoeStore, comment: %(A shoe store.).freeze, label: "ShoeStore".freeze, @@ -14389,10 +14743,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :ShortStory, comment: %(Short story or tale. A brief work of literature, usually written in narrative prose.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1976".freeze, label: "ShortStory".freeze, "schema:category": "issue-1976".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1976".freeze, subClassOf: "schema:CreativeWork".freeze, type: "rdfs:Class".freeze term :SingleFamilyResidence, @@ -14432,15 +14786,15 @@ module RDF::Vocab type: "rdfs:Class".freeze term :SomeProducts, comment: %(A placeholder for multiple similar products of the same kind.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "SomeProducts".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, subClassOf: "schema:Product".freeze, type: "rdfs:Class".freeze term :SpeakableSpecification, comment: %(A SpeakableSpecification indicates \(typically via xpath or cssSelector\) sections of a document that are highlighted as particularly speakable. Instances of this type are expected to be used primarily as values of the speakable property.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1389".freeze, label: "SpeakableSpecification".freeze, "schema:category": "issue-1389".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1389".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :SpecialAnnouncement, @@ -14478,10 +14832,10 @@ module RDF::Vocab SpecialAnnouncement updates in a page, e.g. using JSON-LD. For sites with Atom/RSS functionality, you can point to a feed with the webFeed property. This can be a simple URL, or an inline DataFeed object, with encodingFormat providing media type information e.g. "application/rss+xml" or "application/atom+xml".).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, label: "SpecialAnnouncement".freeze, "schema:category": "issue-2490".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, subClassOf: "schema:CreativeWork".freeze, type: "rdfs:Class".freeze term :Specialty, @@ -14538,16 +14892,16 @@ module RDF::Vocab comment: %(A StatisticalPopulation is a set of instances of a certain given type that satisfy some set of constraints. The property populationType is used to specify the type. Any property that can be used on instances of that type can appear on the statistical population. For example, a StatisticalPopulation representing all Persons with a homeLocation of East Podunk California, would be described by applying the appropriate homeLocation and populationType properties to a StatisticalPopulation item that stands for that set of people. The properties numConstraints and constrainingProperties are used to specify which of the populations properties are used to specify the population. Note that the sense of "population" used here is the general sense of a statistical population, and does not imply that the population consists of people. For example, a populationType of Event or NewsArticle could be used. See also Observation, and the data and datasets overview for more details.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, label: "StatisticalPopulation".freeze, "schema:category": "issue-2291".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :SteeringPositionValue, comment: %(A value indicating a steering position.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "SteeringPositionValue".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, subClassOf: "schema:QualitativeValue".freeze, type: "rdfs:Class".freeze term :Store, @@ -14596,8 +14950,8 @@ module RDF::Vocab comment: %(A suite in a hotel or other public accommodation, denotes a class of luxury accommodations, the key feature of which is multiple rooms \(Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Suite_\(hotel\)\).

    See also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, label: "Suite".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, subClassOf: "schema:Accommodation".freeze, type: "rdfs:Class".freeze term :SuperficialAnatomy, @@ -14737,9 +15091,9 @@ module RDF::Vocab type: "rdfs:Class".freeze term :Thesis, comment: %(A thesis or dissertation document submitted in support of candidature for an academic degree or professional qualification.).freeze, - "dc:source": "http://www.productontology.org/id/Thesis".freeze, label: "Thesis".freeze, "schema:isPartOf": "http://bib.schema.org".freeze, + "schema:source": "http://www.productontology.org/id/Thesis".freeze, subClassOf: "schema:CreativeWork".freeze, type: "rdfs:Class".freeze term :Thing, @@ -14772,17 +15126,17 @@ module RDF::Vocab type: "rdfs:Class".freeze term :TouristAttraction, comment: %(A tourist attraction. In principle any Thing can be a TouristAttraction, from a Mountain and LandmarksOrHistoricalBuildings to a LocalBusiness. This Type can be used on its own to describe a general TouristAttraction, or be used as an additionalType to add tourist attraction properties to any other type. \(See examples below\)).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze], label: "TouristAttraction".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze], subClassOf: "schema:Place".freeze, type: "rdfs:Class".freeze term :TouristDestination, comment: %(A tourist destination. In principle any Place can be a TouristDestination from a City, Region or Country to an AmusementPark or Hotel. This Type can be used on its own to describe a general TouristDestination, or be used as an additionalType to add tourist relevant properties to any other Place. A TouristDestination is defined as a Place that contains, or is colocated with, one or more TouristAttractions, often linked by a similar theme or interest to a particular touristType. The UNWTO defines Destination \(main destination of a tourism trip\) as the place visited that is central to the decision to take the trip. \(See examples below\).).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze], label: "TouristDestination".freeze, "schema:category": "issue-1810".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze], subClassOf: "schema:Place".freeze, type: "rdfs:Class".freeze term :TouristInformationCenter, @@ -14793,10 +15147,10 @@ module RDF::Vocab term :TouristTrip, comment: %(A tourist trip. A created itinerary of visits to one or more places of interest \(TouristAttraction/TouristDestination\) often linked by a similar theme, geographic area, or interest to a particular touristType. The UNWTO defines tourism trip as the Trip taken by visitors. \(See examples below\).).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze], label: "TouristTrip".freeze, "schema:category": "issue-1810".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze], subClassOf: "schema:Trip".freeze, type: "rdfs:Class".freeze term :ToyStore, @@ -14862,21 +15216,37 @@ module RDF::Vocab type: "rdfs:Class".freeze term :Trip, comment: %(A trip or journey. An itinerary of visits to one or more places.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, label: "Trip".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :TypeAndQuantityNode, comment: %(A structured value indicating the quantity, unit of measurement, and business function of goods included in a bundle offer.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "TypeAndQuantityNode".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, subClassOf: "schema:StructuredValue".freeze, type: "rdfs:Class".freeze + term :UKNonprofitType, + comment: %(UKNonprofitType: Non-profit organization type originating from the United Kingdom.).freeze, + label: "UKNonprofitType".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + subClassOf: "schema:NonprofitType".freeze, + type: "rdfs:Class".freeze term :URL, comment: %(Data type: URL.).freeze, label: "URL".freeze, subClassOf: "schema:Text".freeze, type: "rdfs:Class".freeze + term :USNonprofitType, + comment: %(USNonprofitType: Non-profit organization type originating from the United States.).freeze, + label: "USNonprofitType".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + subClassOf: "schema:NonprofitType".freeze, + type: "rdfs:Class".freeze term :UnRegisterAction, comment: %(The act of un-registering from a service.

    @@ -14892,8 +15262,8 @@ module RDF::Vocab type: "rdfs:Class".freeze term :UnitPriceSpecification, comment: %(The price asked for a given offer by the respective organization or person.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "UnitPriceSpecification".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, subClassOf: "schema:PriceSpecification".freeze, type: "rdfs:Class".freeze term :UpdateAction, @@ -14920,8 +15290,8 @@ module RDF::Vocab type: "rdfs:Class".freeze term :UserComments, comment: %(UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use Action-based vocabulary, alongside types such as Comment.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, label: "UserComments".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, "schema:supersededBy": "schema:InteractionCounter".freeze, subClassOf: "schema:UserInteraction".freeze, type: "rdfs:Class".freeze @@ -14963,10 +15333,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :UserReview, comment: %(A review created by an end-user \(e.g. consumer, purchaser, attendee etc.\), in contrast with CriticReview.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1589".freeze, label: "UserReview".freeze, "schema:category": "issue-1589".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1589".freeze, subClassOf: "schema:Review".freeze, type: "rdfs:Class".freeze term :UserTweets, @@ -15020,8 +15390,8 @@ module RDF::Vocab type: "rdfs:Class".freeze term :VideoObject, comment: %(A video file.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, label: "VideoObject".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews".freeze, subClassOf: "schema:MediaObject".freeze, type: "rdfs:Class".freeze term :ViewAction, @@ -15031,10 +15401,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :VirtualLocation, comment: %(An online or virtual location for attending events. For example, one may attend an online seminar or educational event. While a virtual location may be used as the location of an event, virtual locations should not be confused with physical locations in the real world.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, label: "VirtualLocation".freeze, "schema:category": "issue-1842".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, subClassOf: "schema:Intangible".freeze, type: "rdfs:Class".freeze term :Virus, @@ -15049,8 +15419,8 @@ module RDF::Vocab type: "rdfs:Class".freeze term :VisualArtwork, comment: %(A work of art that is primarily visual in character.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_VisualArtworkClass".freeze, label: "VisualArtwork".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_VisualArtworkClass".freeze, subClassOf: "schema:CreativeWork".freeze, type: "rdfs:Class".freeze term :VitalSign, @@ -15096,8 +15466,8 @@ module RDF::Vocab type: "rdfs:Class".freeze term :WarrantyPromise, comment: %(A structured value representing the duration and scope of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "WarrantyPromise".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, subClassOf: "schema:StructuredValue".freeze, type: "rdfs:Class".freeze term :WarrantyScope, @@ -15111,8 +15481,8 @@ module RDF::Vocab
  • http://purl.org/goodrelations/v1#PartsAndLabor-PickUp
  • ).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "WarrantyScope".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, subClassOf: "schema:Enumeration".freeze, type: "rdfs:Class".freeze term :WatchAction, @@ -15132,10 +15502,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :WebAPI, comment: %(An application programming interface accessible over Web/Internet technologies.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1423".freeze, label: "WebAPI".freeze, "schema:category": "issue-1423".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1423".freeze, subClassOf: "schema:Service".freeze, type: "rdfs:Class".freeze term :WebApplication, @@ -15145,10 +15515,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :WebContent, comment: %(WebContent is a type representing all WebPage, WebSite and WebPageElement content. It is sometimes the case that detailed distinctions between Web pages, sites and their parts is not always important or obvious. The WebContent type makes it easier to describe Web-addressable content without requiring such distinctions to always be stated. \(The intent is that the existing types WebPage, WebSite and WebPageElement will eventually be declared as subtypes of WebContent.\)).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2358".freeze, label: "WebContent".freeze, "schema:category": "issue-2358".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2358".freeze, subClassOf: "schema:CreativeWork".freeze, type: "rdfs:Class".freeze term :WebPage, @@ -15183,17 +15553,17 @@ module RDF::Vocab type: "rdfs:Class".freeze term :WorkBasedProgram, comment: %(A program with both an educational and employment component. Typically based at a workplace and structured around work-based learning, with the aim of instilling competencies related to an occupation. WorkBasedProgram is used to distinguish programs such as apprenticeships from school, college or other classroom based educational programs.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, label: "WorkBasedProgram".freeze, "schema:category": "issue-2289".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, subClassOf: "schema:EducationalOccupationalProgram".freeze, type: "rdfs:Class".freeze term :WorkersUnion, comment: %(A Workers Union \(also known as a Labor Union, Labour Union, or Trade Union\) is an organization that promotes the interests of its worker members by collectively bargaining with management, organizing, and political lobbying.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/243".freeze, label: "WorkersUnion".freeze, "schema:category": "issue-243".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/243".freeze, subClassOf: "schema:Organization".freeze, type: "rdfs:Class".freeze term :WriteAction, @@ -15203,10 +15573,10 @@ module RDF::Vocab type: "rdfs:Class".freeze term :XPathType, comment: %(Text representing an XPath \(typically but not necessarily version 1.0\).).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1672".freeze, label: "XPathType".freeze, "schema:category": "issue-1672".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1672".freeze, subClassOf: "schema:Text".freeze, type: "rdfs:Class".freeze term :Zoo, @@ -15218,12 +15588,12 @@ module RDF::Vocab # Property definitions property :about, comment: %(The subject matter of the content.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1670".freeze, domainIncludes: ["schema:CommunicateAction".freeze, "schema:CreativeWork".freeze, "schema:Event".freeze], label: "about".freeze, rangeIncludes: "schema:Thing".freeze, "schema:category": "issue-1670".freeze, "schema:inverseOf": "schema:subjectOf".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1670".freeze, type: "rdf:Property".freeze property :abridged, comment: %(Indicates whether the book is an abridged edition.).freeze, @@ -15234,12 +15604,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :abstract, comment: %(An abstract is a short description that summarizes a CreativeWork.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/276".freeze, domainIncludes: "schema:CreativeWork".freeze, label: "abstract".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-276".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/276".freeze, type: "rdf:Property".freeze property :accelerationTime, comment: %(The time needed to accelerate the vehicle from a given start velocity to a given target velocity.

    @@ -15250,11 +15620,11 @@ module RDF::Vocab
  • Note: There are unfortunately no standard unit codes for seconds/0..100 km/h or seconds/0..60 mph. Simply use "SEC" for seconds and indicate the velocities in the name of the QuantitativeValue, or use valueReference with a QuantitativeValue of 0..60 mph or 0..100 km/h to specify the reference speeds.
  • ).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "accelerationTime".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :acceptedAnswer, comment: %(The answer\(s\) that has been accepted as best, typically on a Question/Answer site. Sites vary in their selection mechanisms, e.g. drawing on community opinion and/or the view of the Question author.).freeze, @@ -15271,10 +15641,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :acceptedPaymentMethod, comment: %(The payment method\(s\) accepted by seller for this offer.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze], label: "acceptedPaymentMethod".freeze, rangeIncludes: ["schema:LoanOrCredit".freeze, "schema:PaymentMethod".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :acceptsReservations, comment: %(Indicates whether a FoodEstablishment accepts reservations. Values can be Boolean, an URL at which reservations can be made or \(for backwards compatibility\) the strings Yes or No.).freeze, @@ -15290,19 +15660,19 @@ module RDF::Vocab type: "rdf:Property".freeze property :accessMode, comment: %(The human sensory perceptual system or cognitive faculty through which a person may process or perceive information. Expected values include: auditory, tactile, textual, visual, colorDependent, chartOnVisual, chemOnVisual, diagramOnVisual, mathOnVisual, musicOnVisual, textOnVisual.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1100".freeze, domainIncludes: "schema:CreativeWork".freeze, label: "accessMode".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-1110".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1100".freeze, type: "rdf:Property".freeze property :accessModeSufficient, comment: %(A list of single or combined accessModes that are sufficient to understand all the intellectual content of a resource. Expected values include: auditory, tactile, textual, visual.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1100".freeze, domainIncludes: "schema:CreativeWork".freeze, label: "accessModeSufficient".freeze, rangeIncludes: "schema:ItemList".freeze, "schema:category": "issue-1110".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1100".freeze, type: "rdf:Property".freeze property :accessibilityAPI, comment: %(Indicates that the resource is compatible with the referenced accessibility API \(WebSchemas wiki lists possible values\).).freeze, @@ -15330,30 +15700,30 @@ module RDF::Vocab type: "rdf:Property".freeze property :accessibilitySummary, comment: %(A human-readable summary of specific accessibility features or deficiencies, consistent with the other accessibility metadata but expressing subtleties such as "short descriptions are present but long descriptions will be needed for non-visual users" or "short descriptions are present and no long descriptions are needed.").freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1100".freeze, domainIncludes: "schema:CreativeWork".freeze, label: "accessibilitySummary".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-1110".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1100".freeze, type: "rdf:Property".freeze property :accommodationCategory, comment: %(Category of an Accommodation, following real estate conventions e.g. RESO \(see PropertySubType, and PropertyType fields for suggested values\).).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, domainIncludes: "schema:Accommodation".freeze, label: "accommodationCategory".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-2373".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, subPropertyOf: "schema:category".freeze, type: "rdf:Property".freeze property :accommodationFloorPlan, comment: %(A floorplan of some Accommodation.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, domainIncludes: ["schema:Accommodation".freeze, "schema:Residence".freeze], label: "accommodationFloorPlan".freeze, rangeIncludes: "schema:FloorPlan".freeze, "schema:category": "issue-2373".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, type: "rdf:Property".freeze property :accountId, comment: %(The identifier for the account the payment will be applied to.).freeze, @@ -15364,21 +15734,21 @@ module RDF::Vocab type: "rdf:Property".freeze property :accountMinimumInflow, comment: %(A minimum amount that has to be paid in every month.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], domainIncludes: "schema:BankAccount".freeze, label: "accountMinimumInflow".freeze, rangeIncludes: "schema:MonetaryAmount".freeze, "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], type: "rdf:Property".freeze property :accountOverdraftLimit, comment: %(An overdraft is an extension of credit from a lending institution when an account reaches zero. An overdraft allows the individual to continue withdrawing money even if the account has no funds in it. Basically the bank allows people to borrow a set amount of money.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], domainIncludes: "schema:BankAccount".freeze, label: "accountOverdraftLimit".freeze, rangeIncludes: "schema:MonetaryAmount".freeze, "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], type: "rdf:Property".freeze property :accountablePerson, comment: %(Specifies the Person that is legally accountable for the CreativeWork.).freeze, @@ -15388,36 +15758,36 @@ module RDF::Vocab type: "rdf:Property".freeze property :acquireLicensePage, comment: %(Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2454".freeze, domainIncludes: "schema:CreativeWork".freeze, label: "acquireLicensePage".freeze, rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze], "schema:category": "issue-2454".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2454".freeze, subPropertyOf: "schema:usageInfo".freeze, type: "rdf:Property".freeze property :acquiredFrom, comment: %(The organization or person from which the product was acquired.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:OwnershipInfo".freeze, label: "acquiredFrom".freeze, rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :acrissCode, comment: %(The ACRISS Car Classification Code is a code used by many car rental companies, for classifying vehicles. ACRISS stands for Association of Car Rental Industry Systems and Standards.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: ["schema:BusOrCoach".freeze, "schema:Car".freeze], label: "acrissCode".freeze, rangeIncludes: "schema:Text".freeze, "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :actionAccessibilityRequirement, comment: %(A set of requirements that a must be fulfilled in order to perform an Action. If more than one value is specied, fulfilling one set of requirements will allow the Action to be performed.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, domainIncludes: "schema:ConsumeAction".freeze, label: "actionAccessibilityRequirement".freeze, rangeIncludes: "schema:ActionAccessSpecification".freeze, "schema:category": "issue-1741".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, type: "rdf:Property".freeze property :actionApplication, comment: %(An application that can complete the request.).freeze, @@ -15446,12 +15816,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :actionableFeedbackPolicy, comment: %(For a NewsMediaOrganization or other news-related Organization, a statement about public engagement activities \(for news media, the newsroom’s\), including involving the public - digitally or otherwise -- in coverage decisions, reporting and activities after publication.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], domainIncludes: ["schema:NewsMediaOrganization".freeze, "schema:Organization".freeze], label: "actionableFeedbackPolicy".freeze, rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze], "schema:category": "issue-1525".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], subPropertyOf: "schema:publishingPrinciples".freeze, type: "rdf:Property".freeze property :activeIngredient, @@ -15490,10 +15860,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :addOn, comment: %(An additional offer that can only be obtained in combination with the first base offer \(e.g. supplements and extensions that are available for a surcharge\).).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:Offer".freeze, label: "addOn".freeze, rangeIncludes: "schema:Offer".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :additionalName, comment: %(An additional name for a Person, can be used for a middle name.).freeze, @@ -15537,9 +15907,11 @@ module RDF::Vocab type: "rdf:Property".freeze property :addressCountry, comment: %(The country. For example, USA. You can also provide the two-letter ISO 3166-1 alpha-2 country code.).freeze, - domainIncludes: ["schema:GeoCoordinates".freeze, "schema:GeoShape".freeze, "schema:PostalAddress".freeze], + domainIncludes: ["schema:DefinedRegion".freeze, "schema:GeoCoordinates".freeze, "schema:GeoShape".freeze, "schema:PostalAddress".freeze], label: "addressCountry".freeze, rangeIncludes: ["schema:Country".freeze, "schema:Text".freeze], + "schema:category": "issue-2506".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, type: "rdf:Property".freeze property :addressLocality, comment: %(The locality in which the street address is, and which is in the region. For example, Mountain View.).freeze, @@ -15549,9 +15921,11 @@ module RDF::Vocab type: "rdf:Property".freeze property :addressRegion, comment: %(The region in which the locality is, and which is in the country. For example, California or another appropriate first-level Administrative division).freeze, - domainIncludes: "schema:PostalAddress".freeze, + domainIncludes: ["schema:DefinedRegion".freeze, "schema:PostalAddress".freeze], label: "addressRegion".freeze, rangeIncludes: "schema:Text".freeze, + "schema:category": "issue-2506".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, type: "rdf:Property".freeze property :administrationRoute, comment: %(A route by which this drug may be administered, e.g. 'oral'.).freeze, @@ -15562,10 +15936,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :advanceBookingRequirement, comment: %(The amount of time that is required between accepting the offer and the actual usage of the resource or service.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze], label: "advanceBookingRequirement".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :adverseOutcome, comment: %(A possible complication and/or side effect of this therapy. If it is known that an adverse outcome is serious \(resulting in death, disability, or permanent damage; requiring hospitalization; or is otherwise life-threatening or requires immediate medical attention\), tag it as a seriouseAdverseOutcome instead.).freeze, @@ -15620,10 +15994,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :albumProductionType, comment: %(Classification of the album by it's type of content: soundtrack, live album, studio album, etc.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, domainIncludes: "schema:MusicAlbum".freeze, label: "albumProductionType".freeze, rangeIncludes: "schema:MusicAlbumProductionType".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "rdf:Property".freeze property :albumRelease, comment: %(A release of this album.).freeze, @@ -15634,10 +16008,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :albumReleaseType, comment: %(The kind of release which this album is: single, EP or album.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, domainIncludes: "schema:MusicAlbum".freeze, label: "albumReleaseType".freeze, rangeIncludes: "schema:MusicAlbumReleaseType".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "rdf:Property".freeze property :albums, comment: %(A collection of music albums.).freeze, @@ -15661,7 +16035,7 @@ module RDF::Vocab "schema:isPartOf": "http://health-lifesci.schema.org".freeze, type: "rdf:Property".freeze property :alignmentType, - comment: %(A category of alignment between the learning resource and the framework node. Recommended values include: 'assesses', 'teaches', 'requires', 'textComplexity', 'readingLevel', 'educationalSubject', and 'educationalLevel'.).freeze, + comment: %(A category of alignment between the learning resource and the framework node. Recommended values include: 'requires', 'textComplexity', 'readingLevel', and 'educationalSubject'.).freeze, domainIncludes: "schema:AlignmentObject".freeze, label: "alignmentType".freeze, rangeIncludes: "schema:Text".freeze, @@ -15694,42 +16068,42 @@ module RDF::Vocab type: "rdf:Property".freeze property :amenityFeature, comment: %(An amenity feature \(e.g. a characteristic or service\) of the Accommodation. This generic property does not make a statement about whether the feature is included in an offer for the main accommodation or available at extra costs.).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, domainIncludes: ["schema:Accommodation".freeze, "schema:FloorPlan".freeze, "schema:LodgingBusiness".freeze, "schema:Place".freeze], label: "amenityFeature".freeze, rangeIncludes: "schema:LocationFeatureSpecification".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, type: "rdf:Property".freeze property :amount, comment: %(The amount of money.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1253".freeze, "https://github.com/schemaorg/schemaorg/issues/1698".freeze], domainIncludes: ["schema:DatedMoneySpecification".freeze, "schema:InvestmentOrDeposit".freeze, "schema:LoanOrCredit".freeze, "schema:MonetaryGrant".freeze, "schema:MoneyTransfer".freeze], label: "amount".freeze, rangeIncludes: ["schema:MonetaryAmount".freeze, "schema:Number".freeze], "schema:category": ["issue-1253".freeze, "issue-1698".freeze], + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1253".freeze, "https://github.com/schemaorg/schemaorg/issues/1698".freeze], type: "rdf:Property".freeze property :amountOfThisGood, comment: %(The quantity of the goods included in the offer.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:TypeAndQuantityNode".freeze, label: "amountOfThisGood".freeze, rangeIncludes: "schema:Number".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :announcementLocation, comment: %(Indicates a specific CivicStructure or LocalBusiness associated with the SpecialAnnouncement. For example, a specific testing facility or business with special opening hours. For a larger geographic region like a quarantine of an entire region, use spatialCoverage.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2514".freeze, domainIncludes: "schema:SpecialAnnouncement".freeze, label: "announcementLocation".freeze, rangeIncludes: ["schema:CivicStructure".freeze, "schema:LocalBusiness".freeze], "schema:category": "issue-2514".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2514".freeze, subPropertyOf: "schema:spatialCoverage".freeze, type: "rdf:Property".freeze property :annualPercentageRate, comment: %(The annual rate that is charged for borrowing \(or made by investing\), expressed as a single percentage number that represents the actual yearly cost of funds over the term of a loan. This includes any fees or additional costs associated with the transaction.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, domainIncludes: "schema:FinancialProduct".freeze, label: "annualPercentageRate".freeze, rangeIncludes: ["schema:Number".freeze, "schema:QuantitativeValue".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, type: "rdf:Property".freeze property :answerCount, comment: %(The number of answers this question has received.).freeze, @@ -15746,12 +16120,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :appearance, comment: %(Indicates an occurence of a Claim in some CreativeWork.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1828".freeze, domainIncludes: "schema:Claim".freeze, label: "appearance".freeze, rangeIncludes: "schema:CreativeWork".freeze, "schema:category": "issue-1828".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1828".freeze, subPropertyOf: "schema:workExample".freeze, type: "rdf:Property".freeze property :applicableLocation, @@ -15763,12 +16137,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :applicantLocationRequirements, comment: %(The location\(s\) applicants can apply from. This is usually used for telecommuting jobs where the applicant does not need to be in a physical office. Note: This should not be used for citizenship or work visa requirements.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2083".freeze, domainIncludes: "schema:JobPosting".freeze, label: "applicantLocationRequirements".freeze, rangeIncludes: "schema:AdministrativeArea".freeze, "schema:category": "issue-2083".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2083".freeze, type: "rdf:Property".freeze property :application, comment: %(An application that can complete the request.).freeze, @@ -15785,30 +16159,30 @@ module RDF::Vocab type: "rdf:Property".freeze property :applicationContact, comment: %(Contact details for further information relevant to this job posting.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2396".freeze, domainIncludes: "schema:JobPosting".freeze, label: "applicationContact".freeze, rangeIncludes: "schema:ContactPoint".freeze, "schema:category": "issue-2396".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2396".freeze, type: "rdf:Property".freeze property :applicationDeadline, comment: %(The date at which the program stops collecting applications for the next enrollment cycle.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, domainIncludes: "schema:EducationalOccupationalProgram".freeze, label: "applicationDeadline".freeze, rangeIncludes: "schema:Date".freeze, "schema:category": "issue-2419".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, type: "rdf:Property".freeze property :applicationStartDate, comment: %(The date at which the program begins collecting applications for the next enrollment cycle.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, domainIncludes: "schema:EducationalOccupationalProgram".freeze, label: "applicationStartDate".freeze, rangeIncludes: "schema:Date".freeze, "schema:category": "issue-2419".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, type: "rdf:Property".freeze property :applicationSubCategory, comment: %(Subcategory of the application, e.g. 'Arcade Game'.).freeze, @@ -15824,27 +16198,27 @@ module RDF::Vocab type: "rdf:Property".freeze property :appliesToDeliveryMethod, comment: %(The delivery method\(s\) to which the delivery charge or payment charge specification applies.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:DeliveryChargeSpecification".freeze, "schema:PaymentChargeSpecification".freeze], label: "appliesToDeliveryMethod".freeze, rangeIncludes: "schema:DeliveryMethod".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :appliesToPaymentMethod, comment: %(The payment method\(s\) to which the payment charge specification applies.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:PaymentChargeSpecification".freeze, label: "appliesToPaymentMethod".freeze, rangeIncludes: "schema:PaymentMethod".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :archiveHeld, comment: %(Collection, fonds, or item held, kept or maintained by an ArchiveOrganization.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1758".freeze, domainIncludes: "schema:ArchiveOrganization".freeze, label: "archiveHeld".freeze, rangeIncludes: "schema:ArchiveComponent".freeze, "schema:category": "issue-1758".freeze, "schema:inverseOf": "schema:holdingArchive".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1758".freeze, type: "rdf:Property".freeze property :area, comment: %(The area within which users can expect to reach the broadcast service.).freeze, @@ -15976,6 +16350,15 @@ module RDF::Vocab label: "assemblyVersion".freeze, rangeIncludes: "schema:Text".freeze, type: "rdf:Property".freeze + property :assesses, + comment: %(The item being described is intended to assess the competency or learning outcome defined by the referenced term.).freeze, + domainIncludes: ["schema:CreativeWork".freeze, "schema:EducationEvent".freeze], + label: "assesses".freeze, + rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze], + "schema:category": "issue-2427".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2427".freeze, + type: "rdf:Property".freeze property :associatedAnatomy, comment: %(The anatomy of the underlying organ system or structures associated with this entity.).freeze, domainIncludes: ["schema:MedicalCondition".freeze, "schema:PhysicalActivity".freeze], @@ -16035,19 +16418,19 @@ module RDF::Vocab type: "rdf:Property".freeze property :audio, comment: %(An embedded audio object.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2420".freeze, domainIncludes: "schema:CreativeWork".freeze, label: "audio".freeze, rangeIncludes: ["schema:AudioObject".freeze, "schema:Clip".freeze, "schema:MusicRecording".freeze], "schema:category": "issue-2420".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2420".freeze, type: "rdf:Property".freeze property :authenticator, comment: %(The Organization responsible for authenticating the user's subscription. For example, many media apps require a cable/satellite provider to authenticate your subscription before playing media.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, domainIncludes: "schema:MediaSubscription".freeze, label: "authenticator".freeze, rangeIncludes: "schema:Organization".freeze, "schema:category": "issue-1741".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, type: "rdf:Property".freeze property :author, comment: %(The author of this content or rating. Please note that author is special in that HTML 5 provides a special mechanism for indicating authorship via the rel tag. That is equivalent to this and may be used interchangeably.).freeze, @@ -16063,26 +16446,26 @@ module RDF::Vocab type: "rdf:Property".freeze property :availabilityEnds, comment: %(The end of the availability of the product or service included in the offer.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, "https://github.com/schemaorg/schemaorg/issues/1741".freeze], domainIncludes: ["schema:ActionAccessSpecification".freeze, "schema:Demand".freeze, "schema:Offer".freeze], label: "availabilityEnds".freeze, rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze, "schema:Time".freeze], "schema:category": "issue-1741".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, "https://github.com/schemaorg/schemaorg/issues/1741".freeze], type: "rdf:Property".freeze property :availabilityStarts, comment: %(The beginning of the availability of the product or service included in the offer.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, "https://github.com/schemaorg/schemaorg/issues/1741".freeze], domainIncludes: ["schema:ActionAccessSpecification".freeze, "schema:Demand".freeze, "schema:Offer".freeze], label: "availabilityStarts".freeze, rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze, "schema:Time".freeze], "schema:category": "issue-1741".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, "https://github.com/schemaorg/schemaorg/issues/1741".freeze], type: "rdf:Property".freeze property :availableAtOrFrom, comment: %(The place\(s\) from which the offer can be obtained \(e.g. store locations\).).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze], label: "availableAtOrFrom".freeze, rangeIncludes: "schema:Place".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, subPropertyOf: "schema:areaServed".freeze, type: "rdf:Property".freeze property :availableChannel, @@ -16093,10 +16476,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :availableDeliveryMethod, comment: %(The delivery method\(s\) available for this offer.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze], label: "availableDeliveryMethod".freeze, rangeIncludes: "schema:DeliveryMethod".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :availableFrom, comment: %(When the item is available for pickup from the store, locker, etc.).freeze, @@ -16172,21 +16555,21 @@ module RDF::Vocab type: "rdf:Property".freeze property :backstory, comment: %(For an Article, typically a NewsArticle, the backstory property provides a textual summary giving a brief explanation of why and how an article was created. In a journalistic setting this could include information about reporting process, methods, interviews, data sources, etc.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1688".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], domainIncludes: "schema:Article".freeze, label: "backstory".freeze, rangeIncludes: ["schema:CreativeWork".freeze, "schema:Text".freeze], "schema:category": "issue-1688".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1688".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], type: "rdf:Property".freeze property :bankAccountType, comment: %(The type of a bank account.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], domainIncludes: "schema:BankAccount".freeze, label: "bankAccountType".freeze, rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], type: "rdf:Property".freeze property :baseSalary, comment: %(The base salary of the job or of an employee in an EmployeeRole.).freeze, @@ -16204,10 +16587,10 @@ module RDF::Vocab property :bed, comment: %(The type of bed or beds included in the accommodation. For the single case of just one bed of a certain type, you use bed directly with a text. If you want to indicate the quantity of a certain kind of bed, use an instance of BedDetails. For more detailed information, use the amenityFeature property.).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, domainIncludes: ["schema:HotelRoom".freeze, "schema:Suite".freeze], label: "bed".freeze, rangeIncludes: ["schema:BedDetails".freeze, "schema:BedType".freeze, "schema:Text".freeze], + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, type: "rdf:Property".freeze property :beforeMedia, comment: %(A media object representing the circumstances before performing this direction.).freeze, @@ -16217,12 +16600,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :beneficiaryBank, comment: %(A bank or bank’s branch, financial institution or international financial institution operating the beneficiary’s bank account or releasing funds for the beneficiary).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], domainIncludes: "schema:MoneyTransfer".freeze, label: "beneficiaryBank".freeze, rangeIncludes: ["schema:BankOrCreditUnion".freeze, "schema:Text".freeze], "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], type: "rdf:Property".freeze property :benefits, comment: %(Description of benefits associated with the job.).freeze, @@ -16233,12 +16616,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :benefitsSummaryUrl, comment: %(The URL that goes directly to the summary of benefits and coverage for the specific standard plan or plan variation.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, domainIncludes: "schema:HealthInsurancePlan".freeze, label: "benefitsSummaryUrl".freeze, rangeIncludes: "schema:URL".freeze, "schema:category": "issue-1062".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, type: "rdf:Property".freeze property :bestRating, comment: %(The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed.).freeze, @@ -16254,10 +16637,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :billingIncrement, comment: %(This property specifies the minimal quantity and rounding increment that will be the basis for the billing. The unit of measurement is specified by the unitCode property.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:UnitPriceSpecification".freeze, label: "billingIncrement".freeze, rangeIncludes: "schema:Number".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :billingPeriod, comment: %(The time interval used to compute the invoice.).freeze, @@ -16331,11 +16714,11 @@ module RDF::Vocab type: "rdf:Property".freeze property :bodyType, comment: %(Indicates the design and body style of the vehicle \(e.g. station wagon, hatchback, etc.\).).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "bodyType".freeze, rangeIncludes: ["schema:QualitativeValue".freeze, "schema:Text".freeze, "schema:URL".freeze], "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :bookEdition, comment: %(The edition of the book.).freeze, @@ -16437,19 +16820,19 @@ module RDF::Vocab type: "rdf:Property".freeze property :broadcastFrequency, comment: %(The frequency used for over-the-air broadcasts. Numeric values or simple ranges e.g. 87-99. In addition a shortcut idiom is supported for frequences of AM and FM radio channels, e.g. "87 FM".).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, domainIncludes: ["schema:BroadcastChannel".freeze, "schema:BroadcastService".freeze], label: "broadcastFrequency".freeze, rangeIncludes: ["schema:BroadcastFrequencySpecification".freeze, "schema:Text".freeze], "schema:category": "issue-1004".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, type: "rdf:Property".freeze property :broadcastFrequencyValue, comment: %(The frequency in MHz for a particular broadcast.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, domainIncludes: "schema:BroadcastFrequencySpecification".freeze, label: "broadcastFrequencyValue".freeze, rangeIncludes: ["schema:Number".freeze, "schema:QuantitativeValue".freeze], "schema:category": "issue-1004".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, type: "rdf:Property".freeze property :broadcastOfEvent, comment: %(The event being broadcast such as a sporting event or awards ceremony.).freeze, @@ -16465,21 +16848,21 @@ module RDF::Vocab type: "rdf:Property".freeze property :broadcastSignalModulation, comment: %(The modulation \(e.g. FM, AM, etc\) used by a particular broadcast service).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2111".freeze, domainIncludes: "schema:BroadcastFrequencySpecification".freeze, label: "broadcastSignalModulation".freeze, rangeIncludes: ["schema:QualitativeValue".freeze, "schema:Text".freeze], "schema:category": "issue-2111".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2111".freeze, type: "rdf:Property".freeze property :broadcastSubChannel, comment: %(The subchannel used for the broadcast.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2111".freeze, domainIncludes: "schema:BroadcastFrequencySpecification".freeze, label: "broadcastSubChannel".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-2111".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2111".freeze, type: "rdf:Property".freeze property :broadcastTimezone, comment: %(The timezone in ISO 8601 format for which the service bases its broadcasts).freeze, @@ -16517,12 +16900,21 @@ module RDF::Vocab label: "busNumber".freeze, rangeIncludes: "schema:Text".freeze, type: "rdf:Property".freeze + property :businessDays, + comment: %(Days of the week when the merchant typically operates, indicated via opening hours markup.).freeze, + domainIncludes: "schema:ShippingDeliveryTime".freeze, + label: "businessDays".freeze, + rangeIncludes: "schema:OpeningHoursSpecification".freeze, + "schema:category": "issue-2506".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, + type: "rdf:Property".freeze property :businessFunction, comment: %(The business function \(e.g. sell, lease, repair, dispose\) of the offer or component of a bundle \(TypeAndQuantityNode\). The default is http://purl.org/goodrelations/v1#Sell.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze, "schema:TypeAndQuantityNode".freeze], label: "businessFunction".freeze, rangeIncludes: "schema:BusinessFunction".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :buyer, comment: %(A sub property of participant. The participant/person/organization that bought the object.).freeze, @@ -16539,39 +16931,39 @@ module RDF::Vocab type: "rdf:Property".freeze property :byDay, comment: %(Defines the day\(s\) of the week on which a recurring Event takes place. May be specified using either DayOfWeek, or alternatively Text conforming to iCal's syntax for byDay recurrence rules).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, domainIncludes: "schema:Schedule".freeze, label: "byDay".freeze, rangeIncludes: ["schema:DayOfWeek".freeze, "schema:Text".freeze], "schema:category": "issue-1457".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, type: "rdf:Property".freeze property :byMonth, comment: %(Defines the month\(s\) of the year on which a recurring Event takes place. Specified as an Integer between 1-12. January is 1.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, domainIncludes: "schema:Schedule".freeze, label: "byMonth".freeze, rangeIncludes: "schema:Integer".freeze, "schema:category": "issue-1457".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, type: "rdf:Property".freeze property :byMonthDay, comment: %(Defines the day\(s\) of the month on which a recurring Event takes place. Specified as an Integer between 1-31.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, domainIncludes: "schema:Schedule".freeze, label: "byMonthDay".freeze, rangeIncludes: "schema:Integer".freeze, "schema:category": "issue-1457".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, type: "rdf:Property".freeze property :callSign, comment: %(A callsign, as used in broadcasting and radio communications to identify people, radio and TV stations, or vehicles.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2109".freeze, domainIncludes: ["schema:BroadcastService".freeze, "schema:Person".freeze, "schema:Vehicle".freeze], label: "callSign".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-2109".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2109".freeze, subPropertyOf: "schema:identifier".freeze, type: "rdf:Property".freeze property :calories, @@ -16605,10 +16997,10 @@ module RDF::Vocab Typical unit code\(s\): LTR for liters, FTQ for cubic foot/feet

    Note: You can use minValue and maxValue to indicate ranges.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "cargoVolume".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :carrier, comment: %('carrier' is an out-dated term indicating the 'provider' for parcel delivery and flights.).freeze, @@ -16625,12 +17017,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :cashBack, comment: %(A cardholder benefit that pays the cardholder a small percentage of their net expenditures.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], domainIncludes: "schema:PaymentCard".freeze, label: "cashBack".freeze, rangeIncludes: ["schema:Boolean".freeze, "schema:Number".freeze], "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], type: "rdf:Property".freeze property :catalog, comment: %(A data catalog which contains this dataset.).freeze, @@ -16641,18 +17033,18 @@ module RDF::Vocab type: "rdf:Property".freeze property :catalogNumber, comment: %(The catalog number for the release.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, domainIncludes: "schema:MusicRelease".freeze, label: "catalogNumber".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "rdf:Property".freeze property :category, comment: %(A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1741".freeze, "https://github.com/schemaorg/schemaorg/issues/2490".freeze], domainIncludes: ["schema:ActionAccessSpecification".freeze, "schema:Invoice".freeze, "schema:Offer".freeze, "schema:PhysicalActivity".freeze, "schema:Product".freeze, "schema:Recommendation".freeze, "schema:Service".freeze, "schema:SpecialAnnouncement".freeze], label: "category".freeze, rangeIncludes: ["schema:PhysicalActivityCategory".freeze, "schema:Text".freeze, "schema:Thing".freeze, "schema:URL".freeze], "schema:category": "issue-1741".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1741".freeze, "https://github.com/schemaorg/schemaorg/issues/2490".freeze], type: "rdf:Property".freeze property :causeOf, comment: %(The condition, complication, symptom, sign, etc. caused.).freeze, @@ -16742,11 +17134,11 @@ module RDF::Vocab type: "rdf:Property".freeze property :claimReviewed, comment: %(A short summary of the specific claims reviewed in a ClaimReview.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1061".freeze, domainIncludes: "schema:ClaimReview".freeze, label: "claimReviewed".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-1061".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1061".freeze, type: "rdf:Property".freeze property :clincalPharmacology, comment: %(Description of the absorption and elimination of drugs, including their concentration \(pharmacokinetics, pK\) and biological effects \(pharmacodynamics, pD\).).freeze, @@ -16772,10 +17164,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :closes, comment: %(The closing hour of the place or service on the given day\(s\) of the week.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:OpeningHoursSpecification".freeze, label: "closes".freeze, rangeIncludes: "schema:Time".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :coach, comment: %(A person that acts in a coaching role for a sports team.).freeze, @@ -16804,12 +17196,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :codeValue, comment: %(A short textual code that uniquely identifies the value.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, domainIncludes: ["schema:CategoryCode".freeze, "schema:MedicalCode".freeze], label: "codeValue".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-894".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, subPropertyOf: "schema:termCode".freeze, type: "rdf:Property".freeze property :codingSystem, @@ -16842,19 +17234,19 @@ module RDF::Vocab type: "rdf:Property".freeze property :collectionSize, comment: %(The number of items in the Collection.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1759".freeze, domainIncludes: "schema:Collection".freeze, label: "collectionSize".freeze, rangeIncludes: "schema:Integer".freeze, "schema:category": "issue-1759".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1759".freeze, type: "rdf:Property".freeze property :color, comment: %(The color of the product.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:Product".freeze, label: "color".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :colorist, comment: %(The individual who adds color to inked drawings.).freeze, @@ -16890,12 +17282,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :competencyRequired, comment: %(Knowledge, skill, ability or personal attribute that must be demonstrated by a person or other entity.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, domainIncludes: "schema:EducationalOccupationalCredential".freeze, label: "competencyRequired".freeze, rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze, "schema:URL".freeze], "schema:category": "issue-1779".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, type: "rdf:Property".freeze property :competitor, comment: %(A competitor in a sports event.).freeze, @@ -16905,10 +17297,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :composer, comment: %(The person or organization who wrote a composition, or who is the composer of a work performed at some event.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, domainIncludes: ["schema:Event".freeze, "schema:MusicComposition".freeze], label: "composer".freeze, rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "rdf:Property".freeze property :comprisedOf, comment: %(Specifying something physically contained by something else. Typically used here for the underlying anatomical structures, such as organs, that comprise the anatomical system.).freeze, @@ -16921,12 +17313,12 @@ module RDF::Vocab comment: %(Conditions that affect the availability of, or method\(s\) of access to, an item. Typically used for real world items such as an ArchiveComponent held by an ArchiveOrganization. This property is not suitable for use as a general Web access control mechanism. It is expressed only in natural language.

    For example "Available by appointment from the Reading Room" or "Accessible only from logged-in accounts ".).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2173".freeze, domainIncludes: "schema:CreativeWork".freeze, label: "conditionsOfAccess".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-2173".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2173".freeze, type: "rdf:Property".freeze property :confirmationNumber, comment: %(A number that confirms the given order or payment has been received.).freeze, @@ -16945,12 +17337,12 @@ module RDF::Vocab property :constrainingProperty, comment: %(Indicates a property used as a constraint to define a StatisticalPopulation with respect to the set of entities corresponding to an indicated type \(via populationType\).).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, domainIncludes: "schema:StatisticalPopulation".freeze, label: "constrainingProperty".freeze, rangeIncludes: "schema:Integer".freeze, "schema:category": "issue-2291".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, type: "rdf:Property".freeze property :contactOption, comment: %(An option available on this contact point \(e.g. a toll-free number or support for hearing-impaired callers\).).freeze, @@ -16979,12 +17371,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :contactlessPayment, comment: %(A secure method for consumers to purchase products or services via debit, credit or smartcards by using RFID or NFC technology.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], domainIncludes: "schema:PaymentCard".freeze, label: "contactlessPayment".freeze, rangeIncludes: "schema:Boolean".freeze, "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], type: "rdf:Property".freeze property :containedIn, comment: %(The basic containment relation between a place and one that contains it.).freeze, @@ -17028,12 +17420,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :contentReferenceTime, comment: %(The specific time described by a creative work, for works \(e.g. articles, video objects etc.\) that emphasise a particular moment within an Event.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1050".freeze, domainIncludes: "schema:CreativeWork".freeze, label: "contentReferenceTime".freeze, rangeIncludes: "schema:DateTime".freeze, "schema:category": "issue-1050".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1050".freeze, type: "rdf:Property".freeze property :contentSize, comment: %(File size in \(mega/kilo\) bytes.).freeze, @@ -17093,21 +17485,21 @@ module RDF::Vocab type: "rdf:Property".freeze property :correction, comment: %(Indicates a correction to a CreativeWork, either via a CorrectionComment, textually or in another document.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1950".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], domainIncludes: "schema:CreativeWork".freeze, label: "correction".freeze, rangeIncludes: ["schema:CorrectionComment".freeze, "schema:Text".freeze, "schema:URL".freeze], "schema:category": ["issue-1688".freeze, "issue-1950".freeze], "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1950".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], type: "rdf:Property".freeze property :correctionsPolicy, comment: %(For an Organization \(e.g. NewsMediaOrganization\), a statement describing \(in news media, the newsroom’s\) disclosure and correction policy for errors.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], domainIncludes: ["schema:NewsMediaOrganization".freeze, "schema:Organization".freeze], label: "correctionsPolicy".freeze, rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze], "schema:category": "issue-1525".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], subPropertyOf: "schema:publishingPrinciples".freeze, type: "rdf:Property".freeze property :costCategory, @@ -17184,12 +17576,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :courseWorkload, comment: %(The amount of work expected of students taking the course, often provided as a figure per week or per month, and may be broken down by type. For example, "2 hours of lectures, 1 hour of lab work and 3 hours of independent study per week".).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1909".freeze, domainIncludes: "schema:CourseInstance".freeze, label: "courseWorkload".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-1909".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1909".freeze, type: "rdf:Property".freeze property :coverageEndTime, comment: %(The time when the live blog will stop covering the Event. Note that coverage may continue after the Event concludes.).freeze, @@ -17205,12 +17597,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :creativeWorkStatus, comment: %(The status of a creative work in terms of its stage in a lifecycle. Example terms include Incomplete, Draft, Published, Obsolete. Some organizations define a set of terms for the stages of their publication lifecycle.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/987".freeze, domainIncludes: "schema:CreativeWork".freeze, label: "creativeWorkStatus".freeze, rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze], "schema:category": "issue-987".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/987".freeze, type: "rdf:Property".freeze property :creator, comment: %(The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork.).freeze, @@ -17220,27 +17612,27 @@ module RDF::Vocab type: "rdf:Property".freeze property :credentialCategory, comment: %(The category or type of credential being described, for example "degree”, “certificate”, “badge”, or more specific term.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, domainIncludes: "schema:EducationalOccupationalCredential".freeze, label: "credentialCategory".freeze, rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze, "schema:URL".freeze], "schema:category": "issue-1779".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, type: "rdf:Property".freeze property :creditedTo, comment: %(The group the release is credited to if different than the byArtist. For example, Red and Blue is credited to "Stefani Germanotta Band", but by Lady Gaga.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, domainIncludes: "schema:MusicRelease".freeze, label: "creditedTo".freeze, rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "rdf:Property".freeze property :cssSelector, comment: %(A CSS selector, e.g. of a SpeakableSpecification or WebPageElement. In the latter case, multiple matches within a page can constitute a single conceptual "Web page element".).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1389".freeze, domainIncludes: ["schema:SpeakableSpecification".freeze, "schema:WebPageElement".freeze], label: "cssSelector".freeze, rangeIncludes: "schema:CssSelectorType".freeze, "schema:category": "issue-1389".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1389".freeze, type: "rdf:Property".freeze property :currenciesAccepted, comment: %(The currency accepted.

    @@ -17254,20 +17646,20 @@ module RDF::Vocab comment: %(The currency in which the monetary amount is expressed.

    Use standard formats: ISO 4217 currency format e.g. "USD"; Ticker symbol for cryptocurrencies e.g. "BTC"; well known names for Local Exchange Tradings Systems \(LETS\) and other currency types e.g. "Ithaca HOUR".).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1253".freeze, domainIncludes: ["schema:DatedMoneySpecification".freeze, "schema:ExchangeRateSpecification".freeze, "schema:LoanOrCredit".freeze, "schema:MonetaryAmount".freeze, "schema:MonetaryAmountDistribution".freeze], label: "currency".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-1253".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1253".freeze, type: "rdf:Property".freeze property :currentExchangeRate, comment: %(The current price of a currency.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], domainIncludes: "schema:ExchangeRateSpecification".freeze, label: "currentExchangeRate".freeze, rangeIncludes: "schema:UnitPriceSpecification".freeze, "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], type: "rdf:Property".freeze property :customer, comment: %(Party placing the order or paying the invoice.).freeze, @@ -17275,149 +17667,159 @@ module RDF::Vocab label: "customer".freeze, rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], type: "rdf:Property".freeze + property :cutoffTime, + comment: %(Order cutoff time allows merchants to describe the time after which they will no longer process orders received on that day. For orders processed after cutoff time, one day gets added to the delivery time estimate. This property is expected to be most typically used via the ShippingRateSettings publication pattern. The time is indicated using the time notation from the ISO-8601 DateTime format, e.g. + 14:45:15Z would represent a daily cutoff at 14:45h UTC.).freeze, + domainIncludes: "schema:ShippingDeliveryTime".freeze, + label: "cutoffTime".freeze, + rangeIncludes: "schema:Text".freeze, + "schema:category": "issue-2506".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, + type: "rdf:Property".freeze property :cvdCollectionDate, comment: %(collectiondate - Date for which patient counts are reported.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, domainIncludes: "schema:CDCPMDRecord".freeze, label: "cvdCollectionDate".freeze, rangeIncludes: ["schema:DateTime".freeze, "schema:Text".freeze], "schema:category": "issue-2521".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, type: "rdf:Property".freeze property :cvdFacilityCounty, comment: %(Name of the County of the NHSN facility that this data record applies to. Use cvdFacilityId to identify the facility. To provide other details, healthcareReportingData can be used on a Hospital entry.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, domainIncludes: "schema:CDCPMDRecord".freeze, label: "cvdFacilityCounty".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-2521".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, type: "rdf:Property".freeze property :cvdFacilityId, comment: %(Identifier of the NHSN facility that this data record applies to. Use cvdFacilityCounty to indicate the county. To provide other details, healthcareReportingData can be used on a Hospital entry.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, domainIncludes: "schema:CDCPMDRecord".freeze, label: "cvdFacilityId".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-2521".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, type: "rdf:Property".freeze property :cvdNumBeds, comment: %(numbeds - HOSPITAL INPATIENT BEDS: Inpatient beds, including all staffed, licensed, and overflow \(surge\) beds used for inpatients.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, domainIncludes: "schema:CDCPMDRecord".freeze, label: "cvdNumBeds".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-2521".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, type: "rdf:Property".freeze property :cvdNumBedsOcc, comment: %(numbedsocc - HOSPITAL INPATIENT BED OCCUPANCY: Total number of staffed inpatient beds that are occupied.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, domainIncludes: "schema:CDCPMDRecord".freeze, label: "cvdNumBedsOcc".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-2521".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, type: "rdf:Property".freeze property :cvdNumC19Died, comment: %(numc19died - DEATHS: Patients with suspected or confirmed COVID-19 who died in the hospital, ED, or any overflow location.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, domainIncludes: "schema:CDCPMDRecord".freeze, label: "cvdNumC19Died".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-2521".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, type: "rdf:Property".freeze property :cvdNumC19HOPats, comment: %(numc19hopats - HOSPITAL ONSET: Patients hospitalized in an NHSN inpatient care location with onset of suspected or confirmed COVID-19 14 or more days after hospitalization.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, domainIncludes: "schema:CDCPMDRecord".freeze, label: "cvdNumC19HOPats".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-2521".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, type: "rdf:Property".freeze property :cvdNumC19HospPats, comment: %(numc19hosppats - HOSPITALIZED: Patients currently hospitalized in an inpatient care location who have suspected or confirmed COVID-19.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, domainIncludes: "schema:CDCPMDRecord".freeze, label: "cvdNumC19HospPats".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-2521".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, type: "rdf:Property".freeze property :cvdNumC19MechVentPats, comment: %(numc19mechventpats - HOSPITALIZED and VENTILATED: Patients hospitalized in an NHSN inpatient care location who have suspected or confirmed COVID-19 and are on a mechanical ventilator.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, domainIncludes: "schema:CDCPMDRecord".freeze, label: "cvdNumC19MechVentPats".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-2521".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, type: "rdf:Property".freeze property :cvdNumC19OFMechVentPats, comment: %(numc19ofmechventpats - ED/OVERFLOW and VENTILATED: Patients with suspected or confirmed COVID-19 who are in the ED or any overflow location awaiting an inpatient bed and on a mechanical ventilator.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, domainIncludes: "schema:CDCPMDRecord".freeze, label: "cvdNumC19OFMechVentPats".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-2521".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, type: "rdf:Property".freeze property :cvdNumC19OverflowPats, comment: %(numc19overflowpats - ED/OVERFLOW: Patients with suspected or confirmed COVID-19 who are in the ED or any overflow location awaiting an inpatient bed.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, domainIncludes: "schema:CDCPMDRecord".freeze, label: "cvdNumC19OverflowPats".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-2521".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, type: "rdf:Property".freeze property :cvdNumICUBeds, comment: %(numicubeds - ICU BEDS: Total number of staffed inpatient intensive care unit \(ICU\) beds.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, domainIncludes: "schema:CDCPMDRecord".freeze, label: "cvdNumICUBeds".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-2521".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, type: "rdf:Property".freeze property :cvdNumICUBedsOcc, comment: %(numicubedsocc - ICU BED OCCUPANCY: Total number of staffed inpatient ICU beds that are occupied.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, domainIncludes: "schema:CDCPMDRecord".freeze, label: "cvdNumICUBedsOcc".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-2521".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, type: "rdf:Property".freeze property :cvdNumTotBeds, comment: %(numtotbeds - ALL HOSPITAL BEDS: Total number of all Inpatient and outpatient beds, including all staffed,ICU, licensed, and overflow \(surge\) beds used for inpatients or outpatients.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, domainIncludes: "schema:CDCPMDRecord".freeze, label: "cvdNumTotBeds".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-2521".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, type: "rdf:Property".freeze property :cvdNumVent, comment: %(numvent - MECHANICAL VENTILATORS: Total number of ventilators available.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, domainIncludes: "schema:CDCPMDRecord".freeze, label: "cvdNumVent".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-2521".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, type: "rdf:Property".freeze property :cvdNumVentUse, comment: %(numventuse - MECHANICAL VENTILATORS IN USE: Total number of ventilators in use.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, domainIncludes: "schema:CDCPMDRecord".freeze, label: "cvdNumVentUse".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-2521".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, type: "rdf:Property".freeze property :dataFeedElement, comment: %(An item within in a data feed. Data feeds may have many elements.).freeze, @@ -17465,11 +17867,11 @@ module RDF::Vocab type: "rdf:Property".freeze property :datePosted, comment: %(Publication date of an online listing.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/2490".freeze, "https://github.com/schemaorg/schemaorg/issues/2521".freeze], domainIncludes: ["schema:CDCPMDRecord".freeze, "schema:JobPosting".freeze, "schema:RealEstateListing".freeze, "schema:SpecialAnnouncement".freeze], label: "datePosted".freeze, rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze], "schema:category": ["issue-2490".freeze, "issue-2521".freeze], + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/2490".freeze, "https://github.com/schemaorg/schemaorg/issues/2521".freeze], type: "rdf:Property".freeze property :datePublished, comment: %(Date of first broadcast/publication.).freeze, @@ -17497,10 +17899,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :dateVehicleFirstRegistered, comment: %(The date of the first registration of the vehicle with the respective public authorities.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "dateVehicleFirstRegistered".freeze, rangeIncludes: "schema:Date".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :dateline, comment: %(A dateline is a brief piece of text included in news articles that describes where and when the story was written or filed though the date is often omitted. Sometimes only a placename is provided.

    @@ -17514,10 +17916,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :dayOfWeek, comment: %(The day of the week for which these opening hours are valid.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:EducationalOccupationalProgram".freeze, "schema:OpeningHoursSpecification".freeze], label: "dayOfWeek".freeze, rangeIncludes: "schema:DayOfWeek".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :deathDate, comment: %(Date of death.).freeze, @@ -17545,10 +17947,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :deliveryLeadTime, comment: %(The typical delay between the receipt of the order and the goods either leaving the warehouse or being prepared for pickup, in case the delivery method is on site pickup.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze], label: "deliveryLeadTime".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :deliveryMethod, comment: %(A sub property of instrument. The method of delivery.).freeze, @@ -17563,6 +17965,15 @@ module RDF::Vocab label: "deliveryStatus".freeze, rangeIncludes: "schema:DeliveryEvent".freeze, type: "rdf:Property".freeze + property :deliveryTime, + comment: %(The total delay between the receipt of the order and the goods reaching the final customer.).freeze, + domainIncludes: ["schema:DeliveryTimeSettings".freeze, "schema:OfferShippingDetails".freeze], + label: "deliveryTime".freeze, + rangeIncludes: "schema:ShippingDeliveryTime".freeze, + "schema:category": "issue-2506".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, + type: "rdf:Property".freeze property :department, comment: %(A relationship between an organization and a department of that organization, also described as an organization \(allowing different urls, logos, opening hours\). For example: a store with a pharmacy, or a bakery with a cafe.).freeze, domainIncludes: "schema:Organization".freeze, @@ -17619,10 +18030,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :depth, comment: %(The depth of the item.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Product".freeze, "schema:VisualArtwork".freeze], label: "depth".freeze, rangeIncludes: ["schema:Distance".freeze, "schema:QuantitativeValue".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :description, comment: %(A description of the item.).freeze, @@ -17728,23 +18139,23 @@ module RDF::Vocab type: "rdf:Property".freeze property :diseasePreventionInfo, comment: %(Information about disease prevention.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, domainIncludes: "schema:SpecialAnnouncement".freeze, label: "diseasePreventionInfo".freeze, rangeIncludes: ["schema:URL".freeze, "schema:WebContent".freeze], "schema:category": "issue-2490".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, type: "rdf:Property".freeze property :diseaseSpreadStatistics, comment: %(Statistical information about the spread of a disease, either as WebContent, or described directly as a Dataset, or the specific Observations in the dataset. When a WebContent URL is provided, the page indicated might also contain more such markup.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, domainIncludes: "schema:SpecialAnnouncement".freeze, label: "diseaseSpreadStatistics".freeze, rangeIncludes: ["schema:Dataset".freeze, "schema:Observation".freeze, "schema:URL".freeze, "schema:WebContent".freeze], "schema:category": "issue-2490".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, type: "rdf:Property".freeze property :dissolutionDate, comment: %(The date that this organization was dissolved.).freeze, @@ -17773,31 +18184,40 @@ module RDF::Vocab type: "rdf:Property".freeze property :diversityPolicy, comment: %(Statement on diversity policy by an Organization e.g. a NewsMediaOrganization. For a NewsMediaOrganization, a statement describing the newsroom’s diversity policy on both staffing and sources, typically providing staffing data.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], domainIncludes: ["schema:NewsMediaOrganization".freeze, "schema:Organization".freeze], label: "diversityPolicy".freeze, rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze], "schema:category": "issue-1525".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], type: "rdf:Property".freeze property :diversityStaffingReport, comment: %(For an Organization \(often but not necessarily a NewsMediaOrganization\), a report on staffing diversity issues. In a news context this might be for example ASNE or RTDNA \(US\) reports, or self-reported.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], domainIncludes: ["schema:NewsMediaOrganization".freeze, "schema:Organization".freeze], label: "diversityStaffingReport".freeze, rangeIncludes: ["schema:Article".freeze, "schema:URL".freeze], "schema:category": "issue-1525".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], subPropertyOf: "schema:publishingPrinciples".freeze, type: "rdf:Property".freeze property :documentation, comment: %(Further documentation describing the Web API in more detail.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1423".freeze, domainIncludes: "schema:WebAPI".freeze, label: "documentation".freeze, rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze], "schema:category": "issue-1423".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1423".freeze, + type: "rdf:Property".freeze + property :doesNotShip, + comment: %(Indicates, as part of an OfferShippingDetails, when shipping to a particular shippingDestination is not available.).freeze, + domainIncludes: ["schema:OfferShippingDetails".freeze, "schema:ShippingRateSettings".freeze], + label: "doesNotShip".freeze, + rangeIncludes: "schema:Boolean".freeze, + "schema:category": "issue-2506".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, type: "rdf:Property".freeze property :domainIncludes, comment: %(Relates a property to a class that is \(one of\) the type\(s\) the property is expected to be used on.).freeze, @@ -17808,12 +18228,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :domiciledMortgage, comment: %(Whether borrower is a resident of the jurisdiction where the property is located.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], domainIncludes: "schema:MortgageLoan".freeze, label: "domiciledMortgage".freeze, rangeIncludes: "schema:Boolean".freeze, "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], type: "rdf:Property".freeze property :doorTime, comment: %(The time admission will commence.).freeze, @@ -17851,12 +18271,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :downPayment, comment: %(a type of payment made in cash during the onset of the purchase of an expensive good/service. The payment typically represents only a percentage of the full purchase price.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], domainIncludes: "schema:RepaymentSpecification".freeze, label: "downPayment".freeze, rangeIncludes: ["schema:MonetaryAmount".freeze, "schema:Number".freeze], "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], type: "rdf:Property".freeze property :downloadUrl, comment: %(If the file can be downloaded, URL to download the binary.).freeze, @@ -17879,10 +18299,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :driveWheelConfiguration, comment: %(The drive wheel configuration, i.e. which roadwheels will receive torque from the vehicle's engine via the drivetrain.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "driveWheelConfiguration".freeze, rangeIncludes: ["schema:DriveWheelConfigurationValue".freeze, "schema:Text".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :dropoffLocation, comment: %(Where a rental car can be dropped off.).freeze, @@ -17919,10 +18339,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :duns, comment: %(The Dun & Bradstreet DUNS number for identifying an organization or business person.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze], label: "duns".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, subPropertyOf: "schema:identifier".freeze, type: "rdf:Property".freeze property :duplicateTherapy, @@ -17934,18 +18354,18 @@ module RDF::Vocab type: "rdf:Property".freeze property :duration, comment: %(The duration of the item \(movie, audio recording, event, etc.\) in ISO 8601 date format.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1457".freeze, "https://github.com/schemaorg/schemaorg/issues/1698".freeze], domainIncludes: ["schema:Audiobook".freeze, "schema:Event".freeze, "schema:MediaObject".freeze, "schema:Movie".freeze, "schema:MusicRecording".freeze, "schema:MusicRelease".freeze, "schema:QuantitativeValueDistribution".freeze, "schema:Schedule".freeze], label: "duration".freeze, rangeIncludes: "schema:Duration".freeze, "schema:category": ["issue-1457".freeze, "issue-1698".freeze], + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1457".freeze, "https://github.com/schemaorg/schemaorg/issues/1698".freeze], type: "rdf:Property".freeze property :durationOfWarranty, comment: %(The duration of the warranty promise. Common unitCode values are ANN for year, MON for months, or DAY for days.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:WarrantyPromise".freeze, label: "durationOfWarranty".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :duringMedia, comment: %(A media object representing the circumstances while performing this direction.).freeze, @@ -17955,12 +18375,26 @@ module RDF::Vocab type: "rdf:Property".freeze property :earlyPrepaymentPenalty, comment: %(The amount to be paid as a penalty in the event of early payment of the loan.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], domainIncludes: "schema:RepaymentSpecification".freeze, label: "earlyPrepaymentPenalty".freeze, rangeIncludes: "schema:MonetaryAmount".freeze, "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], + type: "rdf:Property".freeze + property :editEIDR, + comment: %(An EIDR \(Entertainment Identifier Registry\) identifier representing a specific edit / edition for a work of film or television.

    + +For example, the motion picture known as "Ghostbusters" whose titleEIDR is "10.5240/7EC7-228A-510A-053E-CBB8-J", has several edits e.g. "10.5240/1F2A-E1C5-680A-14C6-E76B-I" and "10.5240/8A35-3BEE-6497-5D12-9E4F-3".

    + +Since schema.org types like Movie and TVEpisode can be used for both works and their multiple expressions, it is possible to use titleEIDR alone \(for a general description\), or alongside editEIDR for a more edit-specific description.).freeze, + domainIncludes: "schema:CreativeWork".freeze, + label: "editEIDR".freeze, + rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], + "schema:category": "issue-2469".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2469".freeze, + subPropertyOf: "schema:identifier".freeze, type: "rdf:Property".freeze property :editor, comment: %(Specifies the Person who edited the CreativeWork.).freeze, @@ -17970,26 +18404,28 @@ module RDF::Vocab type: "rdf:Property".freeze property :educationRequirements, comment: %(Educational background needed for the position or Occupation.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1698".freeze, "https://github.com/schemaorg/schemaorg/issues/1779".freeze], domainIncludes: ["schema:JobPosting".freeze, "schema:Occupation".freeze], label: "educationRequirements".freeze, rangeIncludes: ["schema:EducationalOccupationalCredential".freeze, "schema:Text".freeze], "schema:category": ["issue-1698".freeze, "issue-1779".freeze], "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1698".freeze, "https://github.com/schemaorg/schemaorg/issues/1779".freeze], type: "rdf:Property".freeze property :educationalAlignment, - comment: %(An alignment to an established educational framework.).freeze, + comment: %(An alignment to an established educational framework.

    + +This property should not be used where the nature of the alignment can be described using a simple property, for example to express that a resource teaches or assesses a competency.).freeze, domainIncludes: "schema:CreativeWork".freeze, label: "educationalAlignment".freeze, rangeIncludes: "schema:AlignmentObject".freeze, type: "rdf:Property".freeze property :educationalCredentialAwarded, comment: %(A description of the qualification, award, certificate, diploma or other educational credential awarded as a consequence of successful completion of this course or program.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, domainIncludes: ["schema:Course".freeze, "schema:EducationalOccupationalProgram".freeze], label: "educationalCredentialAwarded".freeze, rangeIncludes: ["schema:EducationalOccupationalCredential".freeze, "schema:Text".freeze, "schema:URL".freeze], "schema:category": "issue-2289".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, type: "rdf:Property".freeze property :educationalFramework, comment: %(The framework to which the resource being described is aligned.).freeze, @@ -17999,21 +18435,21 @@ module RDF::Vocab type: "rdf:Property".freeze property :educationalLevel, comment: %(The level in terms of progression through an educational or training context. Examples of educational levels include 'beginner', 'intermediate' or 'advanced', and formal sets of level indicators.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, - domainIncludes: "schema:EducationalOccupationalCredential".freeze, + domainIncludes: ["schema:CreativeWork".freeze, "schema:EducationEvent".freeze, "schema:EducationalOccupationalCredential".freeze], label: "educationalLevel".freeze, rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze, "schema:URL".freeze], "schema:category": "issue-1779".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, type: "rdf:Property".freeze property :educationalProgramMode, comment: %(Similar to courseMode, The medium or means of delivery of the program as a whole. The value may either be a text label \(e.g. "online", "onsite" or "blended"; "synchronous" or "asynchronous"; "full-time" or "part-time"\) or a URL reference to a term from a controlled vocabulary \(e.g. https://ceds.ed.gov/element/001311#Asynchronous \).).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, domainIncludes: "schema:EducationalOccupationalProgram".freeze, label: "educationalProgramMode".freeze, rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], "schema:category": "issue-2419".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, type: "rdf:Property".freeze property :educationalRole, comment: %(An educationalRole of an EducationalAudience.).freeze, @@ -18033,44 +18469,53 @@ module RDF::Vocab label: "elevation".freeze, rangeIncludes: ["schema:Number".freeze, "schema:Text".freeze], type: "rdf:Property".freeze + property :eligibilityToWorkRequirement, + comment: %(The legal requirements such as citizenship, visa and other documentation required for an applicant to this job.).freeze, + domainIncludes: "schema:JobPosting".freeze, + label: "eligibilityToWorkRequirement".freeze, + rangeIncludes: "schema:Text".freeze, + "schema:category": "issue-2384".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2384".freeze, + type: "rdf:Property".freeze property :eligibleCustomerType, comment: %(The type\(s\) of customers for which the given offer is valid.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze], label: "eligibleCustomerType".freeze, rangeIncludes: "schema:BusinessEntityType".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :eligibleDuration, comment: %(The duration for which the given offer is valid.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze], label: "eligibleDuration".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :eligibleQuantity, comment: %(The interval and unit of measurement of ordering quantities for which the offer or price specification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze, "schema:PriceSpecification".freeze], label: "eligibleQuantity".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :eligibleRegion, comment: %(The ISO 3166-1 \(ISO 3166-1 alpha-2\) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region\(s\) for which the offer or delivery charge specification is valid.

    See also ineligibleRegion.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, "https://github.com/schemaorg/schemaorg/issues/1741".freeze], domainIncludes: ["schema:ActionAccessSpecification".freeze, "schema:DeliveryChargeSpecification".freeze, "schema:Demand".freeze, "schema:Offer".freeze], label: "eligibleRegion".freeze, rangeIncludes: ["schema:GeoShape".freeze, "schema:Place".freeze, "schema:Text".freeze], "schema:category": "issue-1741".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, "https://github.com/schemaorg/schemaorg/issues/1741".freeze], subPropertyOf: "schema:areaServed".freeze, type: "rdf:Property".freeze property :eligibleTransactionVolume, comment: %(The transaction volume, in a monetary unit, for which the offer or price specification is valid, e.g. for indicating a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases to a certain minimal amount.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze, "schema:PriceSpecification".freeze], label: "eligibleTransactionVolume".freeze, rangeIncludes: "schema:PriceSpecification".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :email, comment: %(Email address.).freeze, @@ -18086,11 +18531,11 @@ module RDF::Vocab type: "rdf:Property".freeze property :emissionsCO2, comment: %(The CO2 emissions in g/km. When used in combination with a QuantitativeValue, put "g/km" into the unitText property of that value, since there is no UN/CEFACT Common Code for "g/km".).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "emissionsCO2".freeze, rangeIncludes: "schema:Number".freeze, "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :employee, comment: %(Someone working for this organization.).freeze, @@ -18107,12 +18552,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :employerOverview, comment: %(A description of the employer, career opportunities and work environment for this position.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2396".freeze, domainIncludes: "schema:JobPosting".freeze, label: "employerOverview".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-2396".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2396".freeze, type: "rdf:Property".freeze property :employmentType, comment: %(Type of employment \(e.g. full-time, part-time, contract, temporary, seasonal, internship\).).freeze, @@ -18122,12 +18567,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :employmentUnit, comment: %(Indicates the department, unit and/or facility where the employee reports and/or in which the job is to be performed.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2296".freeze, domainIncludes: "schema:JobPosting".freeze, label: "employmentUnit".freeze, rangeIncludes: "schema:Organization".freeze, "schema:category": "issue-2296".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2296".freeze, type: "rdf:Property".freeze property :encodesCreativeWork, comment: %(The CreativeWork encoded by this media object.).freeze, @@ -18168,30 +18613,30 @@ module RDF::Vocab type: "rdf:Property".freeze property :endDate, comment: %(The end date and time of the item \(in ISO 8601 date format\).).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2486".freeze, domainIncludes: ["schema:CreativeWorkSeason".freeze, "schema:CreativeWorkSeries".freeze, "schema:DatedMoneySpecification".freeze, "schema:EducationalOccupationalProgram".freeze, "schema:Event".freeze, "schema:Role".freeze, "schema:Schedule".freeze], label: "endDate".freeze, rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze], "schema:category": "issue-2486".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2486".freeze, type: "rdf:Property".freeze property :endOffset, comment: %(The end time of the clip expressed as the number of seconds from the beginning of the work.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2021".freeze, domainIncludes: "schema:Clip".freeze, label: "endOffset".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-2021".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2021".freeze, type: "rdf:Property".freeze property :endTime, comment: %(The endTime of something. For a reserved event or service \(e.g. FoodEstablishmentReservation\), the time that it is expected to end. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to December. For media, including audio and video, it's the time offset of the end of a clip within a larger file.

    Note that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2493".freeze, domainIncludes: ["schema:Action".freeze, "schema:FoodEstablishmentReservation".freeze, "schema:MediaObject".freeze, "schema:Schedule".freeze], label: "endTime".freeze, rangeIncludes: ["schema:DateTime".freeze, "schema:Time".freeze], "schema:category": "issue-2493".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2493".freeze, type: "rdf:Property".freeze property :endorsee, comment: %(A sub property of participant. The person/organization being supported.).freeze, @@ -18213,11 +18658,11 @@ module RDF::Vocab Typical unit code\(s\): CMQ for cubic centimeter, LTR for liters, INQ for cubic inches * Note 1: You can link to information about how the given value has been determined using the valueReference property. * Note 2: You can use minValue and maxValue to indicate ranges.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:EngineSpecification".freeze, label: "engineDisplacement".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :enginePower, comment: %(The power of the vehicle's engine. @@ -18229,19 +18674,19 @@ module RDF::Vocab
  • Note 3: You can use minValue and maxValue to indicate ranges.
  • ).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:EngineSpecification".freeze, label: "enginePower".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :engineType, comment: %(The type of engine or engines powering the vehicle.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:EngineSpecification".freeze, label: "engineType".freeze, rangeIncludes: ["schema:QualitativeValue".freeze, "schema:Text".freeze, "schema:URL".freeze], "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :entertainmentBusiness, comment: %(A sub property of location. The entertainment business where the action occurred.).freeze, @@ -18280,10 +18725,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :equal, comment: %(This ordering relation for qualitative values indicates that the subject is equal to the object.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:QualitativeValue".freeze, label: "equal".freeze, rangeIncludes: "schema:QualitativeValue".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :error, comment: %(For failed actions, more information on the cause of the failure.).freeze, @@ -18305,11 +18750,11 @@ module RDF::Vocab type: "rdf:Property".freeze property :estimatedSalary, comment: %(An estimated salary for a job posting or occupation, based on a variety of variables including, but not limited to industry, job title, and location. Estimated salaries are often computed by outside organizations rather than the hiring organization, who may not have committed to the estimated value.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, domainIncludes: ["schema:JobPosting".freeze, "schema:Occupation".freeze], label: "estimatedSalary".freeze, rangeIncludes: ["schema:MonetaryAmount".freeze, "schema:MonetaryAmountDistribution".freeze, "schema:Number".freeze], "schema:category": "issue-1698".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, type: "rdf:Property".freeze property :estimatesRiskOf, comment: %(The condition, complication, or symptom whose risk is being estimated.).freeze, @@ -18320,12 +18765,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :ethicsPolicy, comment: %(Statement about ethics policy, e.g. of a NewsMediaOrganization regarding journalistic and publishing practices, or of a Restaurant, a page describing food source policies. In the case of a NewsMediaOrganization, an ethicsPolicy is typically a statement describing the personal, organizational, and corporate standards of behavior expected by the organization.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1525".freeze, domainIncludes: ["schema:NewsMediaOrganization".freeze, "schema:Organization".freeze], label: "ethicsPolicy".freeze, rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze], "schema:category": "issue-1525".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1525".freeze, type: "rdf:Property".freeze property :event, comment: %(Upcoming or past event associated with this place, organization, or action.).freeze, @@ -18335,12 +18780,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :eventAttendanceMode, comment: %(The eventAttendanceMode of an event indicates whether it occurs online, offline, or a mix.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, domainIncludes: "schema:Event".freeze, label: "eventAttendanceMode".freeze, rangeIncludes: "schema:EventAttendanceModeEnumeration".freeze, "schema:category": "issue-1842".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, type: "rdf:Property".freeze property :eventSchedule, comment: %(Associates an Event with a Schedule. There are circumstances where it is preferable to share a schedule for a series of @@ -18349,12 +18794,12 @@ module RDF::Vocab is associated with a Schedule using this property should not have startDate or endDate properties. These are instead defined within the associated Schedule, this avoids any ambiguity for clients using the data. The property might have repeated values to specify different schedules, e.g. for different months or seasons.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, domainIncludes: "schema:Event".freeze, label: "eventSchedule".freeze, rangeIncludes: "schema:Schedule".freeze, "schema:category": "issue-1457".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, type: "rdf:Property".freeze property :eventStatus, comment: %(An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled.).freeze, @@ -18385,32 +18830,32 @@ module RDF::Vocab type: "rdf:Property".freeze property :exampleOfWork, comment: %(A creative work that this work is an example/instance/realization/derivation of.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, domainIncludes: "schema:CreativeWork".freeze, label: "exampleOfWork".freeze, rangeIncludes: "schema:CreativeWork".freeze, "schema:inverseOf": "schema:workExample".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, type: "rdf:Property".freeze property :exceptDate, comment: %(Defines a Date or DateTime during which a scheduled Event will not take place. The property allows exceptions to a Schedule to be specified. If an exception is specified as a DateTime then only the event that would have started at that specific date and time should be excluded from the schedule. If an exception is specified as a Date then any event that is scheduled for that 24 hour period should be excluded from the schedule. This allows a whole day to be excluded from the schedule without having to itemise every scheduled event.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, domainIncludes: "schema:Schedule".freeze, label: "exceptDate".freeze, rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze], "schema:category": "issue-1457".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, type: "rdf:Property".freeze property :exchangeRateSpread, comment: %(The difference between the price at which a broker or other intermediary buys and sells foreign currency.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], domainIncludes: "schema:ExchangeRateSpecification".freeze, label: "exchangeRateSpread".freeze, rangeIncludes: ["schema:MonetaryAmount".freeze, "schema:Number".freeze], "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], type: "rdf:Property".freeze property :executableLibraryName, comment: %(Library file name e.g., mscorlib.dll, system.web.dll.).freeze, @@ -18475,19 +18920,19 @@ module RDF::Vocab type: "rdf:Property".freeze property :expectsAcceptanceOf, comment: %(An Offer which must be accepted before the user can perform the Action. For example, the user may need to buy a movie before being able to watch it.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, domainIncludes: ["schema:ActionAccessSpecification".freeze, "schema:ConsumeAction".freeze, "schema:MediaSubscription".freeze], label: "expectsAcceptanceOf".freeze, rangeIncludes: "schema:Offer".freeze, "schema:category": "issue-1741".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, type: "rdf:Property".freeze property :experienceRequirements, comment: %(Description of skills and experience needed for the position or Occupation.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, domainIncludes: ["schema:JobPosting".freeze, "schema:Occupation".freeze], label: "experienceRequirements".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-1698".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, type: "rdf:Property".freeze property :expertConsiderations, comment: %(Medical expert advice related to the plan.).freeze, @@ -18528,10 +18973,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :feesAndCommissionsSpecification, comment: %(Description of fees, commissions, and other terms applied either to a class of financial product, or by a financial service organization.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, domainIncludes: ["schema:FinancialProduct".freeze, "schema:FinancialService".freeze], label: "feesAndCommissionsSpecification".freeze, rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, type: "rdf:Property".freeze property :fiberContent, comment: %(The number of grams of fiber.).freeze, @@ -18554,29 +18999,29 @@ module RDF::Vocab type: "rdf:Property".freeze property :financialAidEligible, comment: %(A financial aid type or program which students may use to pay for tuition or fees associated with the program.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2418".freeze, domainIncludes: "schema:EducationalOccupationalProgram".freeze, label: "financialAidEligible".freeze, rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze], "schema:category": "issue-2418".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2418".freeze, type: "rdf:Property".freeze property :firstAppearance, comment: %(Indicates the first known occurence of a Claim in some CreativeWork.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1828".freeze, domainIncludes: "schema:Claim".freeze, label: "firstAppearance".freeze, rangeIncludes: "schema:CreativeWork".freeze, "schema:category": "issue-1828".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1828".freeze, subPropertyOf: "schema:workExample".freeze, type: "rdf:Property".freeze property :firstPerformance, comment: %(The date and place the work was first performed.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, domainIncludes: "schema:MusicComposition".freeze, label: "firstPerformance".freeze, rangeIncludes: "schema:Event".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "rdf:Property".freeze property :flightDistance, comment: %(The distance of the flight.).freeze, @@ -18594,29 +19039,29 @@ module RDF::Vocab property :floorLevel, comment: %(The floor level for an Accommodation in a multi-storey building. Since counting systems vary internationally, the local system should be used where possible.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, domainIncludes: "schema:Accommodation".freeze, label: "floorLevel".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-2373".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, type: "rdf:Property".freeze property :floorLimit, comment: %(A floor limit is the amount of money above which credit card transactions must be authorized.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], domainIncludes: "schema:PaymentCard".freeze, label: "floorLimit".freeze, rangeIncludes: "schema:MonetaryAmount".freeze, "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], type: "rdf:Property".freeze property :floorSize, comment: %(The size of the accommodation, e.g. in square meter or squarefoot. Typical unit code\(s\): MTK for square meter, FTK for square foot, or YDK for square yard).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, domainIncludes: ["schema:Accommodation".freeze, "schema:FloorPlan".freeze], label: "floorSize".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, type: "rdf:Property".freeze property :followee, comment: %(A sub property of object. The person or organization being followed.).freeze, @@ -18691,6 +19136,15 @@ module RDF::Vocab rangeIncludes: "schema:Boolean".freeze, "schema:supersededBy": "schema:isAccessibleForFree".freeze, type: "rdf:Property".freeze + property :freeShippingThreshold, + comment: %(A monetary value above which \(or equal to\) the shipping rate becomes free. Intended to be used via an OfferShippingSpecification with shippingSettingsLink matching this ShippingSettings.).freeze, + domainIncludes: "schema:ShippingRateSettings".freeze, + label: "freeShippingThreshold".freeze, + rangeIncludes: ["schema:DeliveryChargeSpecification".freeze, "schema:MonetaryAmount".freeze], + "schema:category": "issue-2506".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, + type: "rdf:Property".freeze property :frequency, comment: %(How often the dose is taken, e.g. 'daily'.).freeze, domainIncludes: "schema:DoseSchedule".freeze, @@ -18709,11 +19163,11 @@ module RDF::Vocab comment: %(The capacity of the fuel tank or in the case of electric cars, the battery. If there are multiple components for storage, this should indicate the total of all storage of the same type.

    Typical unit code\(s\): LTR for liters, GLL of US gallons, GLI for UK / imperial gallons, AMH for ampere-hours \(for electrical vehicles\).).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "fuelCapacity".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :fuelConsumption, comment: %(The amount of fuel consumed for traveling a particular distance or temporal duration with the given vehicle \(e.g. liters per 100 km\).

    @@ -18724,10 +19178,10 @@ module RDF::Vocab
  • Note 3: Often, the absolute value is useful only when related to driving speed \("at 80 km/h"\) or usage pattern \("city traffic"\). You can use valueReference to link the value for the fuel consumption to another value.
  • ).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "fuelConsumption".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :fuelEfficiency, comment: %(The distance traveled per unit of fuel used; most commonly miles per gallon \(mpg\) or kilometers per liter \(km/L\).

    @@ -18738,17 +19192,17 @@ module RDF::Vocab
  • Note 3: Often, the absolute value is useful only when related to driving speed \("at 80 km/h"\) or usage pattern \("city traffic"\). You can use valueReference to link the value for the fuel economy to another value.
  • ).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "fuelEfficiency".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :fuelType, comment: %(The type of fuel suitable for the engine or engines of the vehicle. If the vehicle has only one engine, this property can be attached directly to the vehicle.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: ["schema:EngineSpecification".freeze, "schema:Vehicle".freeze], label: "fuelType".freeze, rangeIncludes: ["schema:QualitativeValue".freeze, "schema:Text".freeze, "schema:URL".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :functionalClass, comment: %(The degree of mobility the joint allows.).freeze, @@ -18759,12 +19213,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :fundedItem, comment: %(Indicates an item funded or sponsored through a Grant.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1950".freeze, "https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], domainIncludes: "schema:Grant".freeze, label: "fundedItem".freeze, rangeIncludes: "schema:Thing".freeze, "schema:category": ["issue-1688".freeze, "issue-383".freeze], "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1950".freeze, "https://github.com/schemaorg/schemaorg/issues/383".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], type: "rdf:Property".freeze property :funder, comment: %(A person or organization that supports \(sponsors\) something through some kind of financial contribution.).freeze, @@ -18813,12 +19267,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :gender, comment: %(Gender of something, typically a Person, but possibly also fictional characters, animals, etc. While http://schema.org/Male and http://schema.org/Female may be used, text strings are also acceptable for people who do not identify as a binary gender. The gender property can also be used in an extended sense to cover e.g. the gender of sports teams. As with the gender of individuals, we do not try to enumerate all possibilities. A mixed-gender SportsTeam can be indicated with a text value of "Mixed".).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2341".freeze, domainIncludes: ["schema:Person".freeze, "schema:SportsTeam".freeze], label: "gender".freeze, rangeIncludes: ["schema:GenderType".freeze, "schema:Text".freeze], "schema:category": "issue-2341".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2341".freeze, type: "rdf:Property".freeze property :genre, comment: %(Genre of the creative work, broadcast channel or group.).freeze, @@ -18912,12 +19366,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :gettingTestedInfo, comment: %(Information about getting tested \(for a MedicalCondition\), e.g. in the context of a pandemic.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, domainIncludes: "schema:SpecialAnnouncement".freeze, label: "gettingTestedInfo".freeze, rangeIncludes: ["schema:URL".freeze, "schema:WebContent".freeze], "schema:category": "issue-2490".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, type: "rdf:Property".freeze property :givenName, comment: %(Given name. In the U.S., the first name of a Person. This can be used along with familyName instead of the name property.).freeze, @@ -18927,29 +19381,29 @@ module RDF::Vocab type: "rdf:Property".freeze property :globalLocationNumber, comment: %(The Global Location Number \(GLN, sometimes also referred to as International Location Number or ILN\) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze, "schema:Place".freeze], label: "globalLocationNumber".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, subPropertyOf: "schema:identifier".freeze, type: "rdf:Property".freeze property :governmentBenefitsInfo, comment: %(governmentBenefitsInfo provides information about government benefits associated with a SpecialAnnouncement.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, domainIncludes: "schema:SpecialAnnouncement".freeze, label: "governmentBenefitsInfo".freeze, rangeIncludes: "schema:GovernmentService".freeze, "schema:category": "issue-2534".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, type: "rdf:Property".freeze property :gracePeriod, comment: %(The period of time after any due date that the borrower has to fulfil its obligations before a default \(failure to pay\) is deemed to have occurred.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], domainIncludes: "schema:LoanOrCredit".freeze, label: "gracePeriod".freeze, rangeIncludes: "schema:Duration".freeze, "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], type: "rdf:Property".freeze property :grantee, comment: %(The person, organization, contact point, or audience that has been granted this permission.).freeze, @@ -18959,26 +19413,26 @@ module RDF::Vocab type: "rdf:Property".freeze property :greater, comment: %(This ordering relation for qualitative values indicates that the subject is greater than the object.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:QualitativeValue".freeze, label: "greater".freeze, rangeIncludes: "schema:QualitativeValue".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :greaterOrEqual, comment: %(This ordering relation for qualitative values indicates that the subject is greater than or equal to the object.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:QualitativeValue".freeze, label: "greaterOrEqual".freeze, rangeIncludes: "schema:QualitativeValue".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :gtin, comment: %(A Global Trade Item Number \(GTIN\). GTINs identify trade items, including products and services, using numeric identification codes. The gtin property generalizes the earlier gtin8, gtin12, gtin13, and gtin14 properties. The GS1 digital link specifications express GTINs as URLs. A correct gtin value should be a valid GTIN, which means that it should be an all-numeric string of either 8, 12, 13 or 14 digits, or a "GS1 Digital Link" URL based on such a string. The numeric component should also have a valid GS1 check digit and meet the other rules for valid GTINs. See also GS1's GTIN Summary and Wikipedia for more details. Left-padding of the gtin values is not required or encouraged.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze, "schema:Product".freeze], label: "gtin".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-1244".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, subPropertyOf: "schema:identifier".freeze, type: "rdf:Property".freeze property :gtin12, @@ -18990,26 +19444,26 @@ module RDF::Vocab type: "rdf:Property".freeze property :gtin13, comment: %(The GTIN-13 code of the product, or the product to which the offer refers. This is equivalent to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into a GTIN-13 code by simply adding a preceeding zero. See GS1 GTIN Summary for more details.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze, "schema:Product".freeze], label: "gtin13".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, subPropertyOf: ["schema:gtin".freeze, "schema:identifier".freeze], type: "rdf:Property".freeze property :gtin14, comment: %(The GTIN-14 code of the product, or the product to which the offer refers. See GS1 GTIN Summary for more details.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze, "schema:Product".freeze], label: "gtin14".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, subPropertyOf: ["schema:gtin".freeze, "schema:identifier".freeze], type: "rdf:Property".freeze property :gtin8, comment: %(The GTIN-8 code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN. See GS1 GTIN Summary for more details.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze, "schema:Product".freeze], label: "gtin8".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, subPropertyOf: ["schema:gtin".freeze, "schema:identifier".freeze], type: "rdf:Property".freeze property :guideline, @@ -19033,23 +19487,32 @@ module RDF::Vocab rangeIncludes: "schema:MedicalEntity".freeze, "schema:isPartOf": "http://health-lifesci.schema.org".freeze, type: "rdf:Property".freeze + property :handlingTime, + comment: %(The typical delay between the receipt of the order and the goods either leaving the warehouse or being prepared for pickup, in case the delivery method is on site pickup. Typical properties: minValue, maxValue, unitCode \(d for DAY\). This is by common convention assumed to mean business days \(if a unitCode is used, coded as "d"\), i.e. only counting days when the business normally operates.).freeze, + domainIncludes: "schema:ShippingDeliveryTime".freeze, + label: "handlingTime".freeze, + rangeIncludes: "schema:QuantitativeValue".freeze, + "schema:category": "issue-2506".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, + type: "rdf:Property".freeze property :hasBroadcastChannel, comment: %(A broadcast channel of a broadcast service.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, domainIncludes: "schema:BroadcastService".freeze, label: "hasBroadcastChannel".freeze, rangeIncludes: "schema:BroadcastChannel".freeze, "schema:category": "issue-1004".freeze, "schema:inverseOf": "schema:providesBroadcastService".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1004".freeze, type: "rdf:Property".freeze property :hasCategoryCode, comment: %(A Category code contained in this code set.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, domainIncludes: "schema:CategoryCodeSet".freeze, label: "hasCategoryCode".freeze, rangeIncludes: "schema:CategoryCode".freeze, "schema:category": "issue-894".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, subPropertyOf: "schema:hasDefinedTerm".freeze, type: "rdf:Property".freeze property :hasCourseInstance, @@ -19060,21 +19523,21 @@ module RDF::Vocab type: "rdf:Property".freeze property :hasCredential, comment: %(A credential awarded to the Person or Organization.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze], label: "hasCredential".freeze, rangeIncludes: "schema:EducationalOccupationalCredential".freeze, "schema:category": "issue-2289".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, type: "rdf:Property".freeze property :hasDefinedTerm, comment: %(A Defined Term contained in this term set.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, domainIncludes: "schema:DefinedTermSet".freeze, label: "hasDefinedTerm".freeze, rangeIncludes: "schema:DefinedTerm".freeze, "schema:category": "issue-894".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, subPropertyOf: "schema:hasPart".freeze, type: "rdf:Property".freeze property :hasDeliveryMethod, @@ -19091,21 +19554,21 @@ module RDF::Vocab type: "rdf:Property".freeze property :hasDriveThroughService, comment: %(Indicates whether some facility \(e.g. FoodEstablishment, CovidTestingFacility\) offers a service that can be used by driving through in a car. In the case of CovidTestingFacility such facilities could potentially help with social distancing from other potentially-infected users.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, domainIncludes: "schema:Place".freeze, label: "hasDriveThroughService".freeze, rangeIncludes: "schema:Boolean".freeze, "schema:category": "issue-2490".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, type: "rdf:Property".freeze property :hasHealthAspect, comment: %(Indicates the aspect or aspects specifically addressed in some HealthTopicContent. For example, that the content is an overview, or that it talks about treatment, self-care, treatments or their side-effects.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, domainIncludes: "schema:HealthTopicContent".freeze, label: "hasHealthAspect".freeze, rangeIncludes: "schema:HealthAspectEnumeration".freeze, "schema:category": "issue-2374".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, type: "rdf:Property".freeze property :hasMap, comment: %(A URL to a map of the place.).freeze, @@ -19133,20 +19596,20 @@ module RDF::Vocab type: "rdf:Property".freeze property :hasMerchantReturnPolicy, comment: %(Indicates a MerchantReturnPolicy that may be applicable.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, domainIncludes: ["schema:Organization".freeze, "schema:Product".freeze], label: "hasMerchantReturnPolicy".freeze, rangeIncludes: "schema:MerchantReturnPolicy".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, type: "rdf:Property".freeze property :hasOccupation, comment: %(The Person's occupation. For past professions, use Role for expressing dates.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, domainIncludes: "schema:Person".freeze, label: "hasOccupation".freeze, rangeIncludes: "schema:Occupation".freeze, "schema:category": "issue-1698".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, type: "rdf:Property".freeze property :hasOfferCatalog, comment: %(Indicates an OfferCatalog listing for this Organization, Person, or Service.).freeze, @@ -19156,27 +19619,27 @@ module RDF::Vocab type: "rdf:Property".freeze property :hasPOS, comment: %(Points-of-Sales operated by the organization or person.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze], label: "hasPOS".freeze, rangeIncludes: "schema:Place".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :hasPart, comment: %(Indicates an item or CreativeWork that is part of this item, or CreativeWork \(in some sense\).).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, domainIncludes: "schema:CreativeWork".freeze, label: "hasPart".freeze, rangeIncludes: "schema:CreativeWork".freeze, "schema:inverseOf": "schema:isPartOf".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, type: "rdf:Property".freeze property :hasProductReturnPolicy, comment: %(Indicates a ProductReturnPolicy that may be applicable.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, domainIncludes: ["schema:Organization".freeze, "schema:Product".freeze], label: "hasProductReturnPolicy".freeze, rangeIncludes: "schema:ProductReturnPolicy".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://attic.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, "schema:supersededBy": "schema:hasMerchantReturnPolicy".freeze, type: "rdf:Property".freeze property :headline, @@ -19194,120 +19657,120 @@ module RDF::Vocab type: "rdf:Property".freeze property :healthPlanCoinsuranceOption, comment: %(Whether the coinsurance applies before or after deductible, etc. TODO: Is this a closed set?).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, domainIncludes: "schema:HealthPlanCostSharingSpecification".freeze, label: "healthPlanCoinsuranceOption".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-1062".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, type: "rdf:Property".freeze property :healthPlanCoinsuranceRate, comment: %(Whether The rate of coinsurance expressed as a number between 0.0 and 1.0.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, domainIncludes: "schema:HealthPlanCostSharingSpecification".freeze, label: "healthPlanCoinsuranceRate".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-1062".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, type: "rdf:Property".freeze property :healthPlanCopay, comment: %(Whether The copay amount.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, domainIncludes: "schema:HealthPlanCostSharingSpecification".freeze, label: "healthPlanCopay".freeze, rangeIncludes: "schema:PriceSpecification".freeze, "schema:category": "issue-1062".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, type: "rdf:Property".freeze property :healthPlanCopayOption, comment: %(Whether the copay is before or after deductible, etc. TODO: Is this a closed set?).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, domainIncludes: "schema:HealthPlanCostSharingSpecification".freeze, label: "healthPlanCopayOption".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-1062".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, type: "rdf:Property".freeze property :healthPlanCostSharing, comment: %(Whether The costs to the patient for services under this network or formulary.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, domainIncludes: ["schema:HealthPlanFormulary".freeze, "schema:HealthPlanNetwork".freeze], label: "healthPlanCostSharing".freeze, rangeIncludes: "schema:Boolean".freeze, "schema:category": "issue-1062".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, type: "rdf:Property".freeze property :healthPlanDrugOption, comment: %(TODO.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, domainIncludes: "schema:HealthInsurancePlan".freeze, label: "healthPlanDrugOption".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-1062".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, type: "rdf:Property".freeze property :healthPlanDrugTier, comment: %(The tier\(s\) of drugs offered by this formulary or insurance plan.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, domainIncludes: ["schema:HealthInsurancePlan".freeze, "schema:HealthPlanFormulary".freeze], label: "healthPlanDrugTier".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-1062".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, type: "rdf:Property".freeze property :healthPlanId, comment: %(The 14-character, HIOS-generated Plan ID number. \(Plan IDs must be unique, even across different markets.\)).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, domainIncludes: "schema:HealthInsurancePlan".freeze, label: "healthPlanId".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-1062".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, type: "rdf:Property".freeze property :healthPlanMarketingUrl, comment: %(The URL that goes directly to the plan brochure for the specific standard plan or plan variation.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, domainIncludes: "schema:HealthInsurancePlan".freeze, label: "healthPlanMarketingUrl".freeze, rangeIncludes: "schema:URL".freeze, "schema:category": "issue-1062".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, type: "rdf:Property".freeze property :healthPlanNetworkId, comment: %(Name or unique ID of network. \(Networks are often reused across different insurance plans\).).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, domainIncludes: ["schema:HealthPlanNetwork".freeze, "schema:MedicalOrganization".freeze], label: "healthPlanNetworkId".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-1062".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, type: "rdf:Property".freeze property :healthPlanNetworkTier, comment: %(The tier\(s\) for this network.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, domainIncludes: "schema:HealthPlanNetwork".freeze, label: "healthPlanNetworkTier".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-1062".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, type: "rdf:Property".freeze property :healthPlanPharmacyCategory, comment: %(The category or type of pharmacy associated with this cost sharing.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, domainIncludes: "schema:HealthPlanCostSharingSpecification".freeze, label: "healthPlanPharmacyCategory".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-1062".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, type: "rdf:Property".freeze property :healthcareReportingData, comment: %(Indicates data describing a hospital, e.g. a CDC CDCPMDRecord or as some kind of Dataset.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, domainIncludes: "schema:Hospital".freeze, label: "healthcareReportingData".freeze, rangeIncludes: ["schema:CDCPMDRecord".freeze, "schema:Dataset".freeze], "schema:category": "issue-2521".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2521".freeze, type: "rdf:Property".freeze property :height, comment: %(The height of the item.).freeze, @@ -19337,13 +19800,13 @@ module RDF::Vocab type: "rdf:Property".freeze property :holdingArchive, comment: %(ArchiveOrganization that holds, keeps or maintains the ArchiveComponent.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1758".freeze, domainIncludes: "schema:ArchiveComponent".freeze, label: "holdingArchive".freeze, rangeIncludes: "schema:ArchiveOrganization".freeze, "schema:category": "issue-1758".freeze, "schema:inverseOf": "schema:archiveHeld".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1758".freeze, type: "rdf:Property".freeze property :homeLocation, comment: %(A contact location for a person's residence.).freeze, @@ -19469,31 +19932,31 @@ module RDF::Vocab type: "rdf:Property".freeze property :inCodeSet, comment: %(A CategoryCodeSet that contains this category code.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, domainIncludes: "schema:CategoryCode".freeze, label: "inCodeSet".freeze, rangeIncludes: ["schema:CategoryCodeSet".freeze, "schema:URL".freeze], "schema:category": "issue-894".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, subPropertyOf: "schema:inDefinedTermSet".freeze, type: "rdf:Property".freeze property :inDefinedTermSet, comment: %(A DefinedTermSet that contains this term.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, domainIncludes: "schema:DefinedTerm".freeze, label: "inDefinedTermSet".freeze, rangeIncludes: ["schema:DefinedTermSet".freeze, "schema:URL".freeze], "schema:category": "issue-894".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, subPropertyOf: "schema:isPartOf".freeze, type: "rdf:Property".freeze property :inLanguage, comment: %(The language of the content or performance or used in an action. Please use one of the language codes from the IETF BCP 47 standard. See also availableLanguage.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2382".freeze, domainIncludes: ["schema:BroadcastService".freeze, "schema:CommunicateAction".freeze, "schema:CreativeWork".freeze, "schema:Event".freeze, "schema:LinkRole".freeze, "schema:PronounceableText".freeze, "schema:WriteAction".freeze], label: "inLanguage".freeze, rangeIncludes: ["schema:Language".freeze, "schema:Text".freeze], "schema:category": "issue-2382".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2382".freeze, type: "rdf:Property".freeze property :inPlaylist, comment: %(The playlist to which this recording belongs.).freeze, @@ -19503,12 +19966,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :inStoreReturnsOffered, comment: %(Are in-store returns offered?).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, domainIncludes: "schema:MerchantReturnPolicy".freeze, label: "inStoreReturnsOffered".freeze, rangeIncludes: "schema:Boolean".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, type: "rdf:Property".freeze property :inSupportOf, comment: %(Qualification, candidature, degree, application that Thesis supports.).freeze, @@ -19532,10 +19995,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :includedComposition, comment: %(Smaller compositions included in this work \(e.g. a movement in a symphony\).).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, domainIncludes: "schema:MusicComposition".freeze, label: "includedComposition".freeze, rangeIncludes: "schema:MusicComposition".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "rdf:Property".freeze property :includedDataCatalog, comment: %(A data catalog which contains this dataset \(this property was previously 'catalog', preferred name is now 'includedInDataCatalog'\).).freeze, @@ -19553,12 +20016,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :includedInHealthInsurancePlan, comment: %(The insurance plans that cover this drug.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, domainIncludes: "schema:Drug".freeze, label: "includedInHealthInsurancePlan".freeze, rangeIncludes: "schema:HealthInsurancePlan".freeze, "schema:category": "issue-1062".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, type: "rdf:Property".freeze property :includedRiskFactor, comment: %(A modifiable or non-modifiable risk factor included in the calculation, e.g. age, coexisting condition.).freeze, @@ -19569,37 +20032,37 @@ module RDF::Vocab type: "rdf:Property".freeze property :includesAttraction, comment: %(Attraction located at destination.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze], domainIncludes: "schema:TouristDestination".freeze, label: "includesAttraction".freeze, rangeIncludes: "schema:TouristAttraction".freeze, "schema:category": "issue-1810".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze], type: "rdf:Property".freeze property :includesHealthPlanFormulary, comment: %(Formularies covered by this plan.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, domainIncludes: "schema:HealthInsurancePlan".freeze, label: "includesHealthPlanFormulary".freeze, rangeIncludes: "schema:HealthPlanFormulary".freeze, "schema:category": "issue-1062".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, type: "rdf:Property".freeze property :includesHealthPlanNetwork, comment: %(Networks covered by this plan.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, domainIncludes: "schema:HealthInsurancePlan".freeze, label: "includesHealthPlanNetwork".freeze, rangeIncludes: "schema:HealthPlanNetwork".freeze, "schema:category": "issue-1062".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, type: "rdf:Property".freeze property :includesObject, comment: %(This links to a node or nodes indicating the exact quantity of the products included in the offer.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze], label: "includesObject".freeze, rangeIncludes: "schema:TypeAndQuantityNode".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :increasesRiskOf, comment: %(The condition, complication, etc. influenced by this factor.).freeze, @@ -19618,12 +20081,12 @@ module RDF::Vocab comment: %(The ISO 3166-1 \(ISO 3166-1 alpha-2\) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region\(s\) for which the offer or delivery charge specification is not valid, e.g. a region where the transaction is not allowed.

    See also eligibleRegion.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2242".freeze, domainIncludes: ["schema:ActionAccessSpecification".freeze, "schema:DeliveryChargeSpecification".freeze, "schema:Demand".freeze, "schema:Offer".freeze], label: "ineligibleRegion".freeze, rangeIncludes: ["schema:GeoShape".freeze, "schema:Place".freeze, "schema:Text".freeze], "schema:category": "issue-2242".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2242".freeze, type: "rdf:Property".freeze property :infectiousAgent, comment: %(The actual infectious agent, such as a specific bacterium.).freeze, @@ -19707,11 +20170,11 @@ module RDF::Vocab type: "rdf:Property".freeze property :interactionStatistic, comment: %(The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2421".freeze, domainIncludes: ["schema:CreativeWork".freeze, "schema:Organization".freeze, "schema:Person".freeze], label: "interactionStatistic".freeze, rangeIncludes: "schema:InteractionCounter".freeze, "schema:category": "issue-2421".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2421".freeze, type: "rdf:Property".freeze property :interactionType, comment: %(The Action representing the type of interaction. For up votes, +1s, etc. use LikeAction. For down votes use DislikeAction. Otherwise, use the most specific Action.).freeze, @@ -19727,17 +20190,17 @@ module RDF::Vocab type: "rdf:Property".freeze property :interestRate, comment: %(The interest rate, charged or paid, applicable to the financial product. Note: This is different from the calculated annualPercentageRate.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, domainIncludes: "schema:FinancialProduct".freeze, label: "interestRate".freeze, rangeIncludes: ["schema:Number".freeze, "schema:QuantitativeValue".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, type: "rdf:Property".freeze property :inventoryLevel, comment: %(The current approximate inventory level for the item or items.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze, "schema:SomeProducts".freeze], label: "inventoryLevel".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :inverseOf, comment: %(Relates a property to a property that is its inverse. Inverse properties relate the same pairs of items to each other, but in reversed direction. For example, the 'alumni' and 'alumniOf' properties are inverseOf each other. Some properties don't have explicit inverses; in these situations RDFa and JSON-LD syntax for reverse properties can be used.).freeze, @@ -19748,12 +20211,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :isAcceptingNewPatients, comment: %(Whether the provider is accepting new patients.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, domainIncludes: "schema:MedicalOrganization".freeze, label: "isAcceptingNewPatients".freeze, rangeIncludes: "schema:Boolean".freeze, "schema:category": "issue-1062".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, type: "rdf:Property".freeze property :isAccessibleForFree, comment: %(A flag to signal that the item, event, or place is accessible for free.).freeze, @@ -19763,10 +20226,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :isAccessoryOrSparePartFor, comment: %(A pointer to another product \(or multiple products\) for which this product is an accessory or spare part.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:Product".freeze, label: "isAccessoryOrSparePartFor".freeze, rangeIncludes: "schema:Product".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :isAvailableGenerically, comment: %(True if the drug is available in a generic form \(regardless of name\).).freeze, @@ -19790,10 +20253,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :isConsumableFor, comment: %(A pointer to another product \(or multiple products\) for which this product is a consumable.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:Product".freeze, label: "isConsumableFor".freeze, rangeIncludes: "schema:Product".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :isFamilyFriendly, comment: %(Indicates whether this content is family friendly.).freeze, @@ -19822,12 +20285,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :isPlanForApartment, comment: %(Indicates some accommodation that this floor plan describes.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, domainIncludes: "schema:FloorPlan".freeze, label: "isPlanForApartment".freeze, rangeIncludes: "schema:Accommodation".freeze, "schema:category": "issue-2373".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, type: "rdf:Property".freeze property :isProprietary, comment: %(True if this item's name is a proprietary/brand name \(vs. generic name\).).freeze, @@ -19838,33 +20301,42 @@ module RDF::Vocab type: "rdf:Property".freeze property :isRelatedTo, comment: %(A pointer to another, somehow related product \(or multiple products\).).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Product".freeze, "schema:Service".freeze], label: "isRelatedTo".freeze, rangeIncludes: ["schema:Product".freeze, "schema:Service".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :isResizable, comment: %(Whether the 3DModel allows resizing. For example, room layout applications often do not allow 3DModel elements to be resized to reflect reality.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2394".freeze, domainIncludes: "schema:3DModel".freeze, label: "isResizable".freeze, rangeIncludes: "schema:Boolean".freeze, "schema:category": "issue-2394".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2394".freeze, type: "rdf:Property".freeze property :isSimilarTo, comment: %(A pointer to another, functionally similar product \(or multiple products\).).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Product".freeze, "schema:Service".freeze], label: "isSimilarTo".freeze, rangeIncludes: ["schema:Product".freeze, "schema:Service".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, + type: "rdf:Property".freeze + property :isUnlabelledFallback, + comment: %(This can be marked 'true' to indicate that some published ShippingRateSettings are intended to apply to all OfferShippingDetails published by the same merchant, when referenced by a shippingSettingsLink in those settings. It is not meaningful to use a 'true' value for this property alongside a shippingLabel, since this property is for use with unlabelled ShippingRateSettings.).freeze, + domainIncludes: "schema:ShippingRateSettings".freeze, + label: "isUnlabelledFallback".freeze, + rangeIncludes: "schema:Boolean".freeze, + "schema:category": "issue-2506".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, type: "rdf:Property".freeze property :isVariantOf, comment: %(A pointer to a base product from which this product is a variant. It is safe to infer that the variant inherits all product features from the base model, unless defined locally. This is not transitive.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:ProductModel".freeze, label: "isVariantOf".freeze, rangeIncludes: "schema:ProductModel".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :isbn, comment: %(The ISBN of the book.).freeze, @@ -19876,34 +20348,34 @@ module RDF::Vocab type: "rdf:Property".freeze property :isicV4, comment: %(The International Standard of Industrial Classification of All Economic Activities \(ISIC\), Revision 4 code for a particular organization, business person, or place.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze, "schema:Place".freeze], label: "isicV4".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :isrcCode, comment: %(The International Standard Recording Code for the recording.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, domainIncludes: "schema:MusicRecording".freeze, label: "isrcCode".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "rdf:Property".freeze property :issn, comment: %(The International Standard Serial Number \(ISSN\) that identifies this serial publication. You can repeat this property to identify different formats of, or the linking ISSN \(ISSN-L\) for, this serial publication.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, domainIncludes: ["schema:Blog".freeze, "schema:CreativeWorkSeries".freeze, "schema:Dataset".freeze, "schema:WebSite".freeze], equivalentProperty: "bibo:issn".freeze, label: "issn".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, subPropertyOf: "schema:identifier".freeze, type: "rdf:Property".freeze property :issueNumber, comment: %(Identifies the issue of publication; for example, "iii" or "2".).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, domainIncludes: "schema:PublicationIssue".freeze, equivalentProperty: "bibo:issue".freeze, label: "issueNumber".freeze, rangeIncludes: ["schema:Integer".freeze, "schema:Text".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, subPropertyOf: "schema:position".freeze, type: "rdf:Property".freeze property :issuedBy, @@ -19920,10 +20392,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :iswcCode, comment: %(The International Standard Musical Work Code for the composition.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, domainIncludes: "schema:MusicComposition".freeze, label: "iswcCode".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "rdf:Property".freeze property :item, comment: %(An entity represented by an entry in a list or data feed \(e.g. an 'artist' in a list of 'artists'\)’.).freeze, @@ -19955,12 +20427,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :itemLocation, comment: %(Current location of the item.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1758".freeze, domainIncludes: "schema:ArchiveComponent".freeze, label: "itemLocation".freeze, rangeIncludes: ["schema:Place".freeze, "schema:PostalAddress".freeze, "schema:Text".freeze], "schema:category": "issue-1758".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1758".freeze, subPropertyOf: "schema:location".freeze, type: "rdf:Property".freeze property :itemOffered, @@ -19984,12 +20456,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :itinerary, comment: %(Destination\(s\) \( Place \) that make up a trip. For a trip where destination order is important use ItemList to specify that order \(see examples\).).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, domainIncludes: "schema:Trip".freeze, label: "itinerary".freeze, rangeIncludes: ["schema:ItemList".freeze, "schema:Place".freeze], "schema:category": "issue-1810".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, type: "rdf:Property".freeze property :jobBenefits, comment: %(Description of benefits associated with the job.).freeze, @@ -19999,12 +20471,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :jobImmediateStart, comment: %(An indicator as to whether a position is available for an immediate start.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2244".freeze, domainIncludes: "schema:JobPosting".freeze, label: "jobImmediateStart".freeze, rangeIncludes: "schema:Boolean".freeze, "schema:category": "issue-2244".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2244".freeze, type: "rdf:Property".freeze property :jobLocation, comment: %(A \(typically single\) geographic location associated with the job position.).freeze, @@ -20014,39 +20486,39 @@ module RDF::Vocab type: "rdf:Property".freeze property :jobLocationType, comment: %(A description of the job location \(e.g TELECOMMUTE for telecommute jobs\).).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1591".freeze, domainIncludes: "schema:JobPosting".freeze, label: "jobLocationType".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-1591".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1591".freeze, type: "rdf:Property".freeze property :jobStartDate, comment: %(The date on which a successful applicant for this job would be expected to start work. Choose a specific date in the future or use the jobImmediateStart property to indicate the position is to be filled as soon as possible.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2244".freeze, domainIncludes: "schema:JobPosting".freeze, label: "jobStartDate".freeze, rangeIncludes: ["schema:Date".freeze, "schema:Text".freeze], "schema:category": "issue-2244".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2244".freeze, type: "rdf:Property".freeze property :jobTitle, comment: %(The job title of the person \(for example, Financial Manager\).).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2192".freeze, domainIncludes: "schema:Person".freeze, label: "jobTitle".freeze, rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze], "schema:category": "issue-2192".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2192".freeze, type: "rdf:Property".freeze property :jurisdiction, comment: %(Indicates a legal jurisdiction, e.g. of some legislation, or where some government service is based.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, domainIncludes: ["schema:GovernmentService".freeze, "schema:Legislation".freeze], label: "jurisdiction".freeze, rangeIncludes: ["schema:AdministrativeArea".freeze, "schema:Text".freeze], "schema:category": "issue-2534".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, type: "rdf:Property".freeze property :keywords, comment: %(Keywords or tags used to describe this content. Multiple entries in a keywords list are typically delimited by commas.).freeze, @@ -20056,10 +20528,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :knownVehicleDamages, comment: %(A textual description of known damages, both repaired and unrepaired.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "knownVehicleDamages".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :knows, comment: %(The most generic bi-directional social/work relation.).freeze, @@ -20069,21 +20541,21 @@ module RDF::Vocab type: "rdf:Property".freeze property :knowsAbout, comment: %(Of a Person, and less typically of an Organization, to indicate a topic that is known about - suggesting possible expertise but not implying it. We do not distinguish skill levels here, or relate this to educational content, events, objectives or JobPosting descriptions.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1688".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze], label: "knowsAbout".freeze, rangeIncludes: ["schema:Text".freeze, "schema:Thing".freeze, "schema:URL".freeze], "schema:category": "issue-1688".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1688".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], type: "rdf:Property".freeze property :knowsLanguage, comment: %(Of a Person, and less typically of an Organization, to indicate a known language. We do not distinguish skill levels or reading/writing/speaking/signing here. Use language codes from the IETF BCP 47 standard.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1688".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze], label: "knowsLanguage".freeze, rangeIncludes: ["schema:Language".freeze, "schema:Text".freeze], "schema:category": "issue-1688".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1688".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], type: "rdf:Property".freeze property :labelDetails, comment: %(Link to the drug's label details.).freeze, @@ -20127,19 +20599,19 @@ module RDF::Vocab type: "rdf:Property".freeze property :leaseLength, comment: %(Length of the lease for some Accommodation, either particular to some Offer or in some cases intrinsic to the property.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, domainIncludes: ["schema:Accommodation".freeze, "schema:Offer".freeze, "schema:RealEstateListing".freeze], label: "leaseLength".freeze, rangeIncludes: ["schema:Duration".freeze, "schema:QuantitativeValue".freeze], "schema:category": "issue-2373".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, type: "rdf:Property".freeze property :legalName, comment: %(The official name of the organization, e.g. the registered company name.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:Organization".freeze, label: "legalName".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :legalStatus, comment: %(The drug or supplement's legal status, including any controlled substance schedules that apply.).freeze, @@ -20150,7 +20622,6 @@ module RDF::Vocab type: "rdf:Property".freeze property :legislationApplies, comment: %(Indicates that this legislation \(or part of a legislation\) somehow transfers another legislation in a different legislative context. This is an informative link, and it has no legal value. For legally-binding links of transposition, use the legislationTransposes property. For example an informative consolidated law of a European Union's member state "applies" the consolidated version of the European Directive implemented in it.).freeze, - "dc:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], domainIncludes: "schema:Legislation".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#implements".freeze, exactMatch: "http://data.europa.eu/eli/ontology#implements".freeze, @@ -20158,10 +20629,10 @@ module RDF::Vocab rangeIncludes: "schema:Legislation".freeze, "schema:category": "issue-1156".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], type: "rdf:Property".freeze property :legislationChanges, comment: %(Another legislation that this legislation changes. This encompasses the notions of amendment, replacement, correction, repeal, or other types of change. This may be a direct change \(textual or non-textual amendment\) or a consequential or indirect change. The property is to be used to express the existence of a change relationship between two acts rather than the existence of a consolidated version of the text that shows the result of the change. For consolidation relationships, use the legislationConsolidates property.).freeze, - "dc:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], domainIncludes: "schema:Legislation".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#changes".freeze, exactMatch: "http://data.europa.eu/eli/ontology#changes".freeze, @@ -20169,10 +20640,10 @@ module RDF::Vocab rangeIncludes: "schema:Legislation".freeze, "schema:category": "issue-1156".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], type: "rdf:Property".freeze property :legislationConsolidates, comment: %(Indicates another legislation taken into account in this consolidated legislation \(which is usually the product of an editorial process that revises the legislation\). This property should be used multiple times to refer to both the original version or the previous consolidated version, and to the legislations making the change.).freeze, - "dc:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], domainIncludes: "schema:Legislation".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#consolidates".freeze, exactMatch: "http://data.europa.eu/eli/ontology#consolidates".freeze, @@ -20180,10 +20651,10 @@ module RDF::Vocab rangeIncludes: "schema:Legislation".freeze, "schema:category": "issue-1156".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], type: "rdf:Property".freeze property :legislationDate, comment: %(The date of adoption or signature of the legislation. This is the date at which the text is officially aknowledged to be a legislation, even though it might not even be published or in force.).freeze, - "dc:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], domainIncludes: "schema:Legislation".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#date_document".freeze, exactMatch: "http://data.europa.eu/eli/ontology#date_document".freeze, @@ -20191,11 +20662,11 @@ module RDF::Vocab rangeIncludes: "schema:Date".freeze, "schema:category": "issue-1156".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], subPropertyOf: "schema:dateCreated".freeze, type: "rdf:Property".freeze property :legislationDateVersion, comment: %(The point-in-time at which the provided description of the legislation is valid \(e.g. : when looking at the law on the 2016-04-07 \(= dateVersion\), I get the consolidation of 2015-04-12 of the "National Insurance Contributions Act 2015"\)).freeze, - "dc:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], domainIncludes: "schema:Legislation".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#version_date".freeze, exactMatch: "http://data.europa.eu/eli/ontology#version_date".freeze, @@ -20203,21 +20674,21 @@ module RDF::Vocab rangeIncludes: "schema:Date".freeze, "schema:category": "issue-1156".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], type: "rdf:Property".freeze property :legislationIdentifier, comment: %(An identifier for the legislation. This can be either a string-based identifier, like the CELEX at EU level or the NOR in France, or a web-based, URL/URI identifier, like an ELI \(European Legislation Identifier\) or an URN-Lex.).freeze, - "dc:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], domainIncludes: "schema:Legislation".freeze, label: "legislationIdentifier".freeze, rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], "schema:category": "issue-1156".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], "skos:closeMatch": "http://data.europa.eu/eli/ontology#id_local".freeze, subPropertyOf: "schema:identifier".freeze, type: "rdf:Property".freeze property :legislationJurisdiction, comment: %(The jurisdiction from which the legislation originates.).freeze, - "dc:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], domainIncludes: "schema:Legislation".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#jurisdiction".freeze, exactMatch: "http://data.europa.eu/eli/ontology#jurisdiction".freeze, @@ -20225,11 +20696,11 @@ module RDF::Vocab rangeIncludes: ["schema:AdministrativeArea".freeze, "schema:Text".freeze], "schema:category": "issue-1156".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], subPropertyOf: ["schema:jurisdiction".freeze, "schema:spatialCoverage".freeze], type: "rdf:Property".freeze property :legislationLegalForce, comment: %(Whether the legislation is currently in force, not in force, or partially in force.).freeze, - "dc:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], domainIncludes: "schema:Legislation".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#in_force".freeze, exactMatch: "http://data.europa.eu/eli/ontology#in_force".freeze, @@ -20237,10 +20708,10 @@ module RDF::Vocab rangeIncludes: "schema:LegalForceStatus".freeze, "schema:category": "issue-1156".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], type: "rdf:Property".freeze property :legislationLegalValue, comment: %(The legal value of this legislation file. The same legislation can be written in multiple files with different legal values. Typically a digitally signed PDF have a "stronger" legal value than the HTML file of the same act.).freeze, - "dc:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], domainIncludes: "schema:LegislationObject".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#legal_value".freeze, exactMatch: "http://data.europa.eu/eli/ontology#legal_value".freeze, @@ -20248,10 +20719,10 @@ module RDF::Vocab rangeIncludes: "schema:LegalValueLevel".freeze, "schema:category": "issue-1156".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], type: "rdf:Property".freeze property :legislationPassedBy, comment: %(The person or organization that originally passed or made the law : typically parliament \(for primary legislation\) or government \(for secondary legislation\). This indicates the "legal author" of the law, as opposed to its physical author.).freeze, - "dc:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], domainIncludes: "schema:Legislation".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#passed_by".freeze, exactMatch: "http://data.europa.eu/eli/ontology#passed_by".freeze, @@ -20259,11 +20730,11 @@ module RDF::Vocab rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], "schema:category": "issue-1156".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], subPropertyOf: "schema:creator".freeze, type: "rdf:Property".freeze property :legislationResponsible, comment: %(An individual or organization that has some kind of responsibility for the legislation. Typically the ministry who is/was in charge of elaborating the legislation, or the adressee for potential questions about the legislation once it is published.).freeze, - "dc:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], domainIncludes: "schema:Legislation".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#responsibility_of".freeze, exactMatch: "http://data.europa.eu/eli/ontology#responsibility_of".freeze, @@ -20271,10 +20742,10 @@ module RDF::Vocab rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], "schema:category": "issue-1156".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], type: "rdf:Property".freeze property :legislationTransposes, comment: %(Indicates that this legislation \(or part of legislation\) fulfills the objectives set by another legislation, by passing appropriate implementation measures. Typically, some legislations of European Union's member states or regions transpose European Directives. This indicates a legally binding link between the 2 legislations.).freeze, - "dc:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], domainIncludes: "schema:Legislation".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#transposes".freeze, exactMatch: "http://data.europa.eu/eli/ontology#transposes".freeze, @@ -20282,11 +20753,11 @@ module RDF::Vocab rangeIncludes: "schema:Legislation".freeze, "schema:category": "issue-1156".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], subPropertyOf: "schema:legislationApplies".freeze, type: "rdf:Property".freeze property :legislationType, comment: %(The type of the legislation. Examples of values are "law", "act", "directive", "decree", "regulation", "statutory instrument", "loi organique", "règlement grand-ducal", etc., depending on the country.).freeze, - "dc:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], domainIncludes: "schema:Legislation".freeze, equivalentProperty: "http://data.europa.eu/eli/ontology#type_document".freeze, exactMatch: "http://data.europa.eu/eli/ontology#type_document".freeze, @@ -20294,14 +20765,15 @@ module RDF::Vocab rangeIncludes: ["schema:CategoryCode".freeze, "schema:Text".freeze], "schema:category": "issue-1156".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], subPropertyOf: "schema:genre".freeze, type: "rdf:Property".freeze property :leiCode, comment: %(An organization identifier that uniquely identifies a legal entity as defined in ISO 17442.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#GLEIF".freeze], domainIncludes: "schema:Organization".freeze, label: "leiCode".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#GLEIF".freeze], subPropertyOf: "schema:identifier".freeze, type: "rdf:Property".freeze property :lender, @@ -20313,17 +20785,17 @@ module RDF::Vocab type: "rdf:Property".freeze property :lesser, comment: %(This ordering relation for qualitative values indicates that the subject is lesser than the object.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:QualitativeValue".freeze, label: "lesser".freeze, rangeIncludes: "schema:QualitativeValue".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :lesserOrEqual, comment: %(This ordering relation for qualitative values indicates that the subject is lesser than or equal to the object.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:QualitativeValue".freeze, label: "lesserOrEqual".freeze, rangeIncludes: "schema:QualitativeValue".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :letterer, comment: %(The individual who adds lettering, including speech balloons and sound effects, to artwork.).freeze, @@ -20347,12 +20819,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :linkRelationship, comment: %(Indicates the relationship type of a Web link.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1045".freeze, domainIncludes: "schema:LinkRole".freeze, label: "linkRelationship".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-1045".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1045".freeze, type: "rdf:Property".freeze property :liveBlogUpdate, comment: %(An update to the LiveBlog.).freeze, @@ -20362,56 +20834,56 @@ module RDF::Vocab type: "rdf:Property".freeze property :loanMortgageMandateAmount, comment: %(Amount of mortgage mandate that can be converted into a proper mortgage at a later stage.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], domainIncludes: "schema:MortgageLoan".freeze, label: "loanMortgageMandateAmount".freeze, rangeIncludes: "schema:MonetaryAmount".freeze, "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], type: "rdf:Property".freeze property :loanPaymentAmount, comment: %(The amount of money to pay in a single payment.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], domainIncludes: "schema:RepaymentSpecification".freeze, label: "loanPaymentAmount".freeze, rangeIncludes: "schema:MonetaryAmount".freeze, "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], type: "rdf:Property".freeze property :loanPaymentFrequency, comment: %(Frequency of payments due, i.e. number of months between payments. This is defined as a frequency, i.e. the reciprocal of a period of time.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], domainIncludes: "schema:RepaymentSpecification".freeze, label: "loanPaymentFrequency".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], type: "rdf:Property".freeze property :loanRepaymentForm, comment: %(A form of paying back money previously borrowed from a lender. Repayment usually takes the form of periodic payments that normally include part principal plus interest in each payment.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], domainIncludes: "schema:LoanOrCredit".freeze, label: "loanRepaymentForm".freeze, rangeIncludes: "schema:RepaymentSpecification".freeze, "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], type: "rdf:Property".freeze property :loanTerm, comment: %(The duration of the loan or credit agreement.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, domainIncludes: "schema:LoanOrCredit".freeze, label: "loanTerm".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, subPropertyOf: "schema:duration".freeze, type: "rdf:Property".freeze property :loanType, comment: %(The type of a loan or credit.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], domainIncludes: "schema:LoanOrCredit".freeze, label: "loanType".freeze, rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], type: "rdf:Property".freeze property :location, comment: %(The location of for example where the event is happening, an organization is located, or where an action takes place.).freeze, @@ -20439,10 +20911,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :logo, comment: %(An associated logo.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Brand".freeze, "schema:Organization".freeze, "schema:Place".freeze, "schema:Product".freeze, "schema:Service".freeze], label: "logo".freeze, rangeIncludes: ["schema:ImageObject".freeze, "schema:URL".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, subPropertyOf: "schema:image".freeze, type: "rdf:Property".freeze property :longitude, @@ -20474,17 +20946,17 @@ module RDF::Vocab type: "rdf:Property".freeze property :lyricist, comment: %(The person who wrote the words.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, domainIncludes: "schema:MusicComposition".freeze, label: "lyricist".freeze, rangeIncludes: "schema:Person".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "rdf:Property".freeze property :lyrics, comment: %(The words in the song.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, domainIncludes: "schema:MusicComposition".freeze, label: "lyrics".freeze, rangeIncludes: "schema:CreativeWork".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "rdf:Property".freeze property :mainContentOfPage, comment: %(Indicates if this web page element is the main subject of the page.).freeze, @@ -20509,20 +20981,20 @@ module RDF::Vocab type: "rdf:Property".freeze property :maintainer, comment: %(A maintainer of a Dataset, software package \(SoftwareApplication\), or other Project. A maintainer is a Person or Organization that manages contributions to, and/or publication of, some \(typically complex\) artifact. It is common for distributions of software and data to be based on "upstream" sources. When maintainer is applied to a specific version of something e.g. a particular version or packaging of a Dataset, it is always possible that the upstream source has a different maintainer. The isBasedOn property can be used to indicate such relationships between datasets to make the different maintenance roles clear. Similarly in the case of software, a package may have dedicated maintainers working on integration into software distributions such as Ubuntu, as well as upstream maintainers of the underlying work.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2311".freeze, domainIncludes: "schema:CreativeWork".freeze, label: "maintainer".freeze, rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], "schema:category": "issue-2311".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2311".freeze, type: "rdf:Property".freeze property :makesOffer, comment: %(A pointer to products or services offered by the organization or person.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze], label: "makesOffer".freeze, rangeIncludes: "schema:Offer".freeze, "schema:inverseOf": "schema:offeredBy".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :manufacturer, comment: %(The manufacturer of the product.).freeze, @@ -20552,21 +21024,21 @@ module RDF::Vocab type: "rdf:Property".freeze property :marginOfError, comment: %(A marginOfError for an Observation.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, domainIncludes: "schema:Observation".freeze, label: "marginOfError".freeze, rangeIncludes: "schema:DateTime".freeze, "schema:category": "issue-2291".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, type: "rdf:Property".freeze property :masthead, comment: %(For a NewsMediaOrganization, a link to the masthead page or a page listing top editorial management.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], domainIncludes: "schema:NewsMediaOrganization".freeze, label: "masthead".freeze, rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze], "schema:category": "issue-1525".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], subPropertyOf: "schema:publishingPrinciples".freeze, type: "rdf:Property".freeze property :material, @@ -20577,26 +21049,26 @@ module RDF::Vocab type: "rdf:Property".freeze property :materialExtent, comment: %(The quantity of the materials being described or an expression of the physical space they occupy.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1759".freeze, domainIncludes: "schema:CreativeWork".freeze, label: "materialExtent".freeze, rangeIncludes: ["schema:QuantitativeValue".freeze, "schema:Text".freeze], "schema:category": "issue-1759".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1759".freeze, type: "rdf:Property".freeze property :maxPrice, comment: %(The highest price if the price is a range.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:PriceSpecification".freeze, label: "maxPrice".freeze, rangeIncludes: "schema:Number".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :maxValue, comment: %(The upper value of some characteristic or property.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:MonetaryAmount".freeze, "schema:PropertyValue".freeze, "schema:PropertyValueSpecification".freeze, "schema:QuantitativeValue".freeze], label: "maxValue".freeze, rangeIncludes: "schema:Number".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :maximumAttendeeCapacity, comment: %(The total number of individuals that may attend an event or venue.).freeze, @@ -20606,12 +21078,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :maximumEnrollment, comment: %(The maximum number of students who may be enrolled in the program.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, domainIncludes: "schema:EducationalOccupationalProgram".freeze, label: "maximumEnrollment".freeze, rangeIncludes: "schema:Integer".freeze, "schema:category": "issue-2419".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, type: "rdf:Property".freeze property :maximumIntake, comment: %(Recommended intake of this supplement for a given population as defined by a specific recommending authority.).freeze, @@ -20622,21 +21094,21 @@ module RDF::Vocab type: "rdf:Property".freeze property :maximumPhysicalAttendeeCapacity, comment: %(The maximum physical attendee capacity of an Event whose eventAttendanceMode is OfflineEventAttendanceMode \(or the offline aspects, in the case of a MixedEventAttendanceMode\).).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, domainIncludes: "schema:Event".freeze, label: "maximumPhysicalAttendeeCapacity".freeze, rangeIncludes: "schema:Integer".freeze, "schema:category": "issue-1842".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, type: "rdf:Property".freeze property :maximumVirtualAttendeeCapacity, comment: %(The maximum physical attendee capacity of an Event whose eventAttendanceMode is OnlineEventAttendanceMode \(or the online aspects, in the case of a MixedEventAttendanceMode\).).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, domainIncludes: "schema:Event".freeze, label: "maximumVirtualAttendeeCapacity".freeze, rangeIncludes: "schema:Integer".freeze, "schema:category": "issue-1842".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, type: "rdf:Property".freeze property :mealService, comment: %(Description of the meals that will be provided or available for purchase.).freeze, @@ -20646,21 +21118,21 @@ module RDF::Vocab type: "rdf:Property".freeze property :measuredProperty, comment: %(The measuredProperty of an Observation, either a schema.org property, a property from other RDF-compatible systems e.g. W3C RDF Data Cube, or schema.org extensions such as GS1's.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, domainIncludes: "schema:Observation".freeze, label: "measuredProperty".freeze, rangeIncludes: "schema:Property".freeze, "schema:category": "issue-2291".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, type: "rdf:Property".freeze property :measuredValue, comment: %(The measuredValue of an Observation.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, domainIncludes: "schema:Observation".freeze, label: "measuredValue".freeze, rangeIncludes: "schema:DataType".freeze, "schema:category": "issue-2291".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, type: "rdf:Property".freeze property :measurementTechnique, comment: %(A technique or technology used in a Dataset \(or DataDownload, DataCatalog\), @@ -20671,12 +21143,12 @@ module RDF::Vocab If the variableMeasured is "depression rating", the measurementTechnique could be "Zung Scale" or "HAM-D" or "Beck Depression Inventory".

    If there are several variableMeasured properties recorded for some given data object, use a PropertyValue for each variableMeasured and attach the corresponding measurementTechnique.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1425".freeze, domainIncludes: ["schema:DataCatalog".freeze, "schema:DataDownload".freeze, "schema:Dataset".freeze, "schema:PropertyValue".freeze], label: "measurementTechnique".freeze, rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], "schema:category": "issue-1425".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1425".freeze, type: "rdf:Property".freeze property :mechanismOfAction, comment: %(The specific biochemical interaction through which this drug or supplement produces its pharmacological effect.).freeze, @@ -20687,20 +21159,20 @@ module RDF::Vocab type: "rdf:Property".freeze property :mediaAuthenticityCategory, comment: %(Indicates a MediaManipulationRatingEnumeration classification of a media object \(in the context of how it was published or shared\).).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, domainIncludes: "schema:MediaReview".freeze, label: "mediaAuthenticityCategory".freeze, rangeIncludes: "schema:MediaManipulationRatingEnumeration".freeze, "schema:category": "issue-2450".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, type: "rdf:Property".freeze property :median, comment: %(The median value.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, domainIncludes: "schema:QuantitativeValueDistribution".freeze, label: "median".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-1698".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, type: "rdf:Property".freeze property :medicalSpecialty, comment: %(A medical specialty of the provider.).freeze, @@ -20718,11 +21190,11 @@ module RDF::Vocab type: "rdf:Property".freeze property :meetsEmissionStandard, comment: %(Indicates that the vehicle meets the respective emission standard.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "meetsEmissionStandard".freeze, rangeIncludes: ["schema:QualitativeValue".freeze, "schema:Text".freeze, "schema:URL".freeze], "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :member, comment: %(A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals.).freeze, @@ -20753,12 +21225,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :membershipPointsEarned, comment: %(The number of membership points earned by the member. If necessary, the unitText can be used to express the units the points are issued in. \(e.g. stars, miles, etc.\)).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2085".freeze, domainIncludes: "schema:ProgramMembership".freeze, label: "membershipPointsEarned".freeze, rangeIncludes: ["schema:Number".freeze, "schema:QuantitativeValue".freeze], "schema:category": "issue-2085".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2085".freeze, type: "rdf:Property".freeze property :memoryRequirements, comment: %(Minimum memory requirements.).freeze, @@ -20781,11 +21253,11 @@ module RDF::Vocab type: "rdf:Property".freeze property :menuAddOn, comment: %(Additional menu item\(s\) such as a side dish of salad or side order of fries that can be added to this menu item. Additionally it can be a menu section containing allowed add-on menu items for this menu item.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1541".freeze, domainIncludes: "schema:MenuItem".freeze, label: "menuAddOn".freeze, rangeIncludes: ["schema:MenuItem".freeze, "schema:MenuSection".freeze], "schema:category": "issue-1541".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1541".freeze, type: "rdf:Property".freeze property :merchant, comment: %('merchant' is an out-dated term for 'seller'.).freeze, @@ -20796,21 +21268,21 @@ module RDF::Vocab type: "rdf:Property".freeze property :merchantReturnDays, comment: %(The merchantReturnDays property indicates the number of days \(from purchase\) within which relevant merchant return policy is applicable.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, domainIncludes: "schema:MerchantReturnPolicy".freeze, label: "merchantReturnDays".freeze, rangeIncludes: "schema:Integer".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, type: "rdf:Property".freeze property :merchantReturnLink, comment: %(Indicates a Web page or service by URL, for product return.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, domainIncludes: "schema:MerchantReturnPolicy".freeze, label: "merchantReturnLink".freeze, rangeIncludes: "schema:URL".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, type: "rdf:Property".freeze property :messageAttachment, comment: %(A CreativeWork attached to the message.).freeze, @@ -20822,24 +21294,24 @@ module RDF::Vocab comment: %(The total distance travelled by the particular vehicle since its initial production, as read from its odometer.

    Typical unit code\(s\): KMT for kilometers, SMI for statute miles).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "mileageFromOdometer".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :minPrice, comment: %(The lowest price if the price is a range.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:PriceSpecification".freeze, label: "minPrice".freeze, rangeIncludes: "schema:Number".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :minValue, comment: %(The lower value of some characteristic or property.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:MonetaryAmount".freeze, "schema:PropertyValue".freeze, "schema:PropertyValueSpecification".freeze, "schema:QuantitativeValue".freeze], label: "minValue".freeze, rangeIncludes: "schema:Number".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :minimumPaymentDue, comment: %(The minimum payment required at this time.).freeze, @@ -20849,12 +21321,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :missionCoveragePrioritiesPolicy, comment: %(For a NewsMediaOrganization, a statement on coverage priorities, including any public agenda or stance on issues.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], domainIncludes: "schema:NewsMediaOrganization".freeze, label: "missionCoveragePrioritiesPolicy".freeze, rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze], "schema:category": "issue-1525".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], subPropertyOf: "schema:publishingPrinciples".freeze, type: "rdf:Property".freeze property :model, @@ -20865,11 +21337,11 @@ module RDF::Vocab type: "rdf:Property".freeze property :modelDate, comment: %(The release date of a vehicle model \(often used to differentiate versions of the same make and model\).).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "modelDate".freeze, rangeIncludes: "schema:Date".freeze, "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :modifiedTime, comment: %(The date and time the reservation was modified.).freeze, @@ -20879,19 +21351,19 @@ module RDF::Vocab type: "rdf:Property".freeze property :monthlyMinimumRepaymentAmount, comment: %(The minimum payment is the lowest amount of money that one is required to pay on a credit card statement each month.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], domainIncludes: "schema:CreditCard".freeze, label: "monthlyMinimumRepaymentAmount".freeze, rangeIncludes: ["schema:MonetaryAmount".freeze, "schema:Number".freeze], "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], type: "rdf:Property".freeze property :mpn, comment: %(The Manufacturer Part Number \(MPN\) of the product, or the product to which the offer refers.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze, "schema:Product".freeze], label: "mpn".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :multipleValues, comment: %(Whether multiple values are allowed for the property. Default is false.).freeze, @@ -20908,10 +21380,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :musicArrangement, comment: %(An arrangement derived from the composition.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, domainIncludes: "schema:MusicComposition".freeze, label: "musicArrangement".freeze, rangeIncludes: "schema:MusicComposition".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "rdf:Property".freeze property :musicBy, comment: %(The composer of the soundtrack.).freeze, @@ -20921,10 +21393,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :musicCompositionForm, comment: %(The type of composition \(e.g. overture, sonata, symphony, etc.\).).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, domainIncludes: "schema:MusicComposition".freeze, label: "musicCompositionForm".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "rdf:Property".freeze property :musicGroupMember, comment: %(A member of a music group—for example, John, Paul, George, or Ringo.).freeze, @@ -20935,24 +21407,24 @@ module RDF::Vocab type: "rdf:Property".freeze property :musicReleaseFormat, comment: %(Format of this release \(the type of recording media used, ie. compact disc, digital media, LP, etc.\).).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, domainIncludes: "schema:MusicRelease".freeze, label: "musicReleaseFormat".freeze, rangeIncludes: "schema:MusicReleaseFormatType".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "rdf:Property".freeze property :musicalKey, comment: %(The key, mode, or scale this composition uses.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, domainIncludes: "schema:MusicComposition".freeze, label: "musicalKey".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "rdf:Property".freeze property :naics, comment: %(The North American Industry Classification System \(NAICS\) code for a particular organization or business person.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze], label: "naics".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :name, comment: %(The name of the item.).freeze, @@ -21004,12 +21476,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :newsUpdatesAndGuidelines, comment: %(Indicates a page with news updates and guidelines. This could often be \(but is not required to be\) the main page containing SpecialAnnouncement markup on a site.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, domainIncludes: "schema:SpecialAnnouncement".freeze, label: "newsUpdatesAndGuidelines".freeze, rangeIncludes: ["schema:URL".freeze, "schema:WebContent".freeze], "schema:category": "issue-2490".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, type: "rdf:Property".freeze property :nextItem, comment: %(A link to the ListItem that follows the current one.).freeze, @@ -21019,20 +21491,20 @@ module RDF::Vocab type: "rdf:Property".freeze property :noBylinesPolicy, comment: %(For a NewsMediaOrganization or other news-related Organization, a statement explaining when authors of articles are not named in bylines.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1688".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], domainIncludes: "schema:NewsMediaOrganization".freeze, label: "noBylinesPolicy".freeze, rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze], "schema:category": "issue-1688".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1688".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], subPropertyOf: "schema:publishingPrinciples".freeze, type: "rdf:Property".freeze property :nonEqual, comment: %(This ordering relation for qualitative values indicates that the subject is not equal to the object.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:QualitativeValue".freeze, label: "nonEqual".freeze, rangeIncludes: "schema:QualitativeValue".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :nonProprietaryName, comment: %(The generic name of this drug or supplement.).freeze, @@ -21041,6 +21513,15 @@ module RDF::Vocab rangeIncludes: "schema:Text".freeze, "schema:isPartOf": "http://health-lifesci.schema.org".freeze, type: "rdf:Property".freeze + property :nonprofitStatus, + comment: %(nonprofit Status indicates the legal status of a non-profit organization in its primary place of business.).freeze, + domainIncludes: "schema:Organization".freeze, + label: "nonprofitStatus".freeze, + rangeIncludes: "schema:NonprofitType".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "rdf:Property".freeze property :normalRange, comment: %(Range of acceptable values for a typical patient, when applicable.).freeze, domainIncludes: "schema:MedicalTest".freeze, @@ -21050,12 +21531,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :nsn, comment: %(Indicates the NATO stock number \(nsn\) of a Product.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2126".freeze, domainIncludes: "schema:Product".freeze, label: "nsn".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-2126".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2126".freeze, subPropertyOf: "schema:identifier".freeze, type: "rdf:Property".freeze property :numAdults, @@ -21072,12 +21553,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :numConstraints, comment: %(Indicates the number of constraints \(not counting populationType\) defined for a particular StatisticalPopulation. This helps applications understand if they have access to a sufficiently complete description of a StatisticalPopulation.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, domainIncludes: "schema:StatisticalPopulation".freeze, label: "numConstraints".freeze, rangeIncludes: "schema:Integer".freeze, "schema:category": "issue-2291".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, type: "rdf:Property".freeze property :numTracks, comment: %(The number of tracks in this album or playlist.).freeze, @@ -21087,80 +21568,80 @@ module RDF::Vocab type: "rdf:Property".freeze property :numberOfAccommodationUnits, comment: %(Indicates the total \(available plus unavailable\) number of accommodation units in an ApartmentComplex, or the number of accommodation units for a specific FloorPlan \(within its specific ApartmentComplex\). See also numberOfAvailableAccommodationUnits.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, domainIncludes: ["schema:ApartmentComplex".freeze, "schema:FloorPlan".freeze], label: "numberOfAccommodationUnits".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, "schema:category": "issue-2373".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, type: "rdf:Property".freeze property :numberOfAirbags, comment: %(The number or type of airbags in the vehicle.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "numberOfAirbags".freeze, rangeIncludes: ["schema:Number".freeze, "schema:Text".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :numberOfAvailableAccommodationUnits, comment: %(Indicates the number of available accommodation units in an ApartmentComplex, or the number of accommodation units for a specific FloorPlan \(within its specific ApartmentComplex\). See also numberOfAccommodationUnits.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, domainIncludes: ["schema:ApartmentComplex".freeze, "schema:FloorPlan".freeze], label: "numberOfAvailableAccommodationUnits".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, "schema:category": "issue-2373".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, type: "rdf:Property".freeze property :numberOfAxles, comment: %(The number of axles.

    Typical unit code\(s\): C62).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "numberOfAxles".freeze, rangeIncludes: ["schema:Number".freeze, "schema:QuantitativeValue".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :numberOfBathroomsTotal, comment: %(The total integer number of bathrooms in a some Accommodation, following real estate conventions as documented in RESO: "The simple sum of the number of bathrooms. For example for a property with two Full Bathrooms and one Half Bathroom, the Bathrooms Total Integer will be 3.". See also numberOfRooms.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, domainIncludes: ["schema:Accommodation".freeze, "schema:FloorPlan".freeze], label: "numberOfBathroomsTotal".freeze, rangeIncludes: "schema:Integer".freeze, "schema:category": "issue-2373".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, type: "rdf:Property".freeze property :numberOfBedrooms, comment: %(The total integer number of bedrooms in a some Accommodation, ApartmentComplex or FloorPlan.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, domainIncludes: ["schema:Accommodation".freeze, "schema:ApartmentComplex".freeze, "schema:FloorPlan".freeze], label: "numberOfBedrooms".freeze, rangeIncludes: ["schema:Number".freeze, "schema:QuantitativeValue".freeze], "schema:category": "issue-2373".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, type: "rdf:Property".freeze property :numberOfBeds, comment: %(The quantity of the given bed type available in the HotelRoom, Suite, House, or Apartment.).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, domainIncludes: "schema:BedDetails".freeze, label: "numberOfBeds".freeze, rangeIncludes: "schema:Number".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, type: "rdf:Property".freeze property :numberOfCredits, comment: %(The number of credits or units awarded by a Course or required to complete an EducationalOccupationalProgram.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, domainIncludes: ["schema:Course".freeze, "schema:EducationalOccupationalProgram".freeze], label: "numberOfCredits".freeze, rangeIncludes: ["schema:Integer".freeze, "schema:StructuredValue".freeze], "schema:category": "issue-2419".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, type: "rdf:Property".freeze property :numberOfDoors, comment: %(The number of doors.

    Typical unit code\(s\): C62).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "numberOfDoors".freeze, rangeIncludes: ["schema:Number".freeze, "schema:QuantitativeValue".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :numberOfEmployees, comment: %(The number of employees in an organization e.g. business.).freeze, @@ -21178,19 +21659,19 @@ module RDF::Vocab comment: %(The total number of forward gears available for the transmission system of the vehicle.

    Typical unit code\(s\): C62).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "numberOfForwardGears".freeze, rangeIncludes: ["schema:Number".freeze, "schema:QuantitativeValue".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :numberOfFullBathrooms, comment: %(Number of full bathrooms - The total number of full and ¾ bathrooms in an Accommodation. This corresponds to the BathroomsFull field in RESO.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, domainIncludes: ["schema:Accommodation".freeze, "schema:FloorPlan".freeze], label: "numberOfFullBathrooms".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-2373".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, type: "rdf:Property".freeze property :numberOfItems, comment: %(The number of items in an ItemList. Note that some descriptions might not fully describe all items in a list \(e.g., multi-page pagination\); in such cases, the numberOfItems would be for the entire list.).freeze, @@ -21200,12 +21681,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :numberOfLoanPayments, comment: %(The number of payments contractually required at origination to repay the loan. For monthly paying loans this is the number of months from the contractual first payment date to the maturity date.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], domainIncludes: "schema:RepaymentSpecification".freeze, label: "numberOfLoanPayments".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], type: "rdf:Property".freeze property :numberOfPages, comment: %(The number of pages in the book.).freeze, @@ -21215,12 +21696,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :numberOfPartialBathrooms, comment: %(Number of partial bathrooms - The total number of half and ¼ bathrooms in an Accommodation. This corresponds to the BathroomsPartial field in RESO.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, domainIncludes: ["schema:Accommodation".freeze, "schema:FloorPlan".freeze], label: "numberOfPartialBathrooms".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-2373".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, type: "rdf:Property".freeze property :numberOfPlayers, comment: %(Indicate how many people can play this game \(minimum, maximum, or range\).).freeze, @@ -21232,18 +21713,18 @@ module RDF::Vocab comment: %(The number of owners of the vehicle, including the current one.

    Typical unit code\(s\): C62).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "numberOfPreviousOwners".freeze, rangeIncludes: ["schema:Number".freeze, "schema:QuantitativeValue".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :numberOfRooms, comment: %(The number of rooms \(excluding bathrooms and closets\) of the accommodation or lodging business. Typical unit code\(s\): ROM for room or C62 for no unit. The type of room can be put in the unitText property of the QuantitativeValue.).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, domainIncludes: ["schema:Accommodation".freeze, "schema:Apartment".freeze, "schema:FloorPlan".freeze, "schema:House".freeze, "schema:LodgingBusiness".freeze, "schema:SingleFamilyResidence".freeze, "schema:Suite".freeze], label: "numberOfRooms".freeze, rangeIncludes: ["schema:Number".freeze, "schema:QuantitativeValue".freeze], + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, type: "rdf:Property".freeze property :numberOfSeasons, comment: %(The number of seasons in this series.).freeze, @@ -21271,57 +21752,57 @@ module RDF::Vocab type: "rdf:Property".freeze property :observationDate, comment: %(The observationDate of an Observation.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, domainIncludes: "schema:Observation".freeze, label: "observationDate".freeze, rangeIncludes: "schema:DateTime".freeze, "schema:category": "issue-2291".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, type: "rdf:Property".freeze property :observedNode, comment: %(The observedNode of an Observation, often a StatisticalPopulation.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, domainIncludes: "schema:Observation".freeze, label: "observedNode".freeze, rangeIncludes: "schema:StatisticalPopulation".freeze, "schema:category": "issue-2291".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, type: "rdf:Property".freeze property :occupancy, comment: %(The allowed total occupancy for the accommodation in persons \(including infants etc\). For individual accommodations, this is not necessarily the legal maximum but defines the permitted usage as per the contractual agreement \(e.g. a double room used by a single person\). Typical unit code\(s\): C62 for person).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, domainIncludes: ["schema:Apartment".freeze, "schema:HotelRoom".freeze, "schema:SingleFamilyResidence".freeze, "schema:Suite".freeze], label: "occupancy".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, type: "rdf:Property".freeze property :occupationLocation, comment: %(The region/country for which this occupational description is appropriate. Note that educational requirements and qualifications can vary between jurisdictions.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, domainIncludes: "schema:Occupation".freeze, label: "occupationLocation".freeze, rangeIncludes: "schema:AdministrativeArea".freeze, "schema:category": "issue-1698".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, type: "rdf:Property".freeze property :occupationalCategory, comment: %(A category describing the job, preferably using a term from a taxonomy such as BLS O*NET-SOC, ISCO-08 or similar, with the property repeated for each applicable value. Ideally the taxonomy should be identified, and both the textual label and formal code for the category should be provided.

    Note: for historical reasons, any textual label and formal code provided as a literal may be assumed to be from O*NET-SOC.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1698".freeze, "https://github.com/schemaorg/schemaorg/issues/2192".freeze, "https://github.com/schemaorg/schemaorg/issues/2289".freeze, "https://github.com/schemaorg/schemaorg/issues/2460".freeze], domainIncludes: ["schema:EducationalOccupationalProgram".freeze, "schema:JobPosting".freeze, "schema:Occupation".freeze, "schema:WorkBasedProgram".freeze], label: "occupationalCategory".freeze, rangeIncludes: ["schema:CategoryCode".freeze, "schema:Text".freeze], "schema:category": ["issue-1698".freeze, "issue-2192".freeze, "issue-2289".freeze, "issue-2460".freeze], "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1698".freeze, "https://github.com/schemaorg/schemaorg/issues/2192".freeze, "https://github.com/schemaorg/schemaorg/issues/2289".freeze, "https://github.com/schemaorg/schemaorg/issues/2460".freeze], type: "rdf:Property".freeze property :occupationalCredentialAwarded, comment: %(A description of the qualification, award, certificate, diploma or other occupational credential awarded as a consequence of successful completion of this course or program.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, domainIncludes: ["schema:Course".freeze, "schema:EducationalOccupationalProgram".freeze], label: "occupationalCredentialAwarded".freeze, rangeIncludes: ["schema:EducationalOccupationalCredential".freeze, "schema:Text".freeze, "schema:URL".freeze], "schema:category": "issue-2289".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, type: "rdf:Property".freeze property :offerCount, comment: %(The number of offers for the product.).freeze, @@ -21338,21 +21819,21 @@ module RDF::Vocab type: "rdf:Property".freeze property :offers, comment: %(An offer to provide this item—for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use businessFunction to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a Demand. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, domainIncludes: ["schema:AggregateOffer".freeze, "schema:CreativeWork".freeze, "schema:EducationalOccupationalProgram".freeze, "schema:Event".freeze, "schema:MenuItem".freeze, "schema:Product".freeze, "schema:Service".freeze, "schema:Trip".freeze], label: "offers".freeze, rangeIncludes: ["schema:Demand".freeze, "schema:Offer".freeze], "schema:category": "issue-2289".freeze, "schema:inverseOf": "schema:itemOffered".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, type: "rdf:Property".freeze property :offersPrescriptionByMail, comment: %(Whether prescriptions can be delivered by mail.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, domainIncludes: "schema:HealthPlanFormulary".freeze, label: "offersPrescriptionByMail".freeze, rangeIncludes: "schema:Boolean".freeze, "schema:category": "issue-1062".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, type: "rdf:Property".freeze property :openingHours, comment: %(The general opening hours for a business. Opening hours can be specified as a weekly time range, starting with days, then times per day. Multiple days can be listed with commas ',' separating each day. Day or time ranges are specified using a hyphen '-'.

    @@ -21370,17 +21851,17 @@ module RDF::Vocab type: "rdf:Property".freeze property :openingHoursSpecification, comment: %(The opening hours of a certain place.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:Place".freeze, label: "openingHoursSpecification".freeze, rangeIncludes: "schema:OpeningHoursSpecification".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :opens, comment: %(The opening hour of the place or service on the given day\(s\) of the week.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:OpeningHoursSpecification".freeze, label: "opens".freeze, rangeIncludes: "schema:Time".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :operatingSystem, comment: %(Operating systems supported \(Windows 7, OSX 10.6, Android 1.6\).).freeze, @@ -21480,58 +21961,58 @@ module RDF::Vocab type: "rdf:Property".freeze property :ownedFrom, comment: %(The date and time of obtaining the product.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:OwnershipInfo".freeze, label: "ownedFrom".freeze, rangeIncludes: "schema:DateTime".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :ownedThrough, comment: %(The date and time of giving up ownership on the product.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:OwnershipInfo".freeze, label: "ownedThrough".freeze, rangeIncludes: "schema:DateTime".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :ownershipFundingInfo, comment: %(For an Organization \(often but not necessarily a NewsMediaOrganization\), a description of organizational ownership structure; funding and grants. In a news/media setting, this is with particular reference to editorial independence. Note that the funder is also available and can be used to make basic funder information machine-readable.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], domainIncludes: ["schema:NewsMediaOrganization".freeze, "schema:Organization".freeze], label: "ownershipFundingInfo".freeze, rangeIncludes: ["schema:AboutPage".freeze, "schema:CreativeWork".freeze, "schema:Text".freeze, "schema:URL".freeze], "schema:category": "issue-1525".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], subPropertyOf: "schema:publishingPrinciples".freeze, type: "rdf:Property".freeze property :owns, comment: %(Products owned by the organization or person.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze], label: "owns".freeze, rangeIncludes: ["schema:OwnershipInfo".freeze, "schema:Product".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :pageEnd, comment: %(The page on which the work ends; for example "138" or "xvi".).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, domainIncludes: ["schema:Article".freeze, "schema:Chapter".freeze, "schema:PublicationIssue".freeze, "schema:PublicationVolume".freeze], equivalentProperty: "bibo:pageEnd".freeze, label: "pageEnd".freeze, rangeIncludes: ["schema:Integer".freeze, "schema:Text".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, type: "rdf:Property".freeze property :pageStart, comment: %(The page on which the work starts; for example "135" or "xiii".).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, domainIncludes: ["schema:Article".freeze, "schema:Chapter".freeze, "schema:PublicationIssue".freeze, "schema:PublicationVolume".freeze], equivalentProperty: "bibo:pageStart".freeze, label: "pageStart".freeze, rangeIncludes: ["schema:Integer".freeze, "schema:Text".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, type: "rdf:Property".freeze property :pagination, comment: %(Any description of pages that is not separated into pageStart and pageEnd; for example, "1-6, 9, 55" or "10-12, 46-49".).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, domainIncludes: ["schema:Article".freeze, "schema:Chapter".freeze, "schema:PublicationIssue".freeze, "schema:PublicationVolume".freeze], equivalentProperty: "bibo:pages".freeze, label: "pagination".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, type: "rdf:Property".freeze property :parent, comment: %(A parent of this person.).freeze, @@ -21615,13 +22096,13 @@ module RDF::Vocab type: "rdf:Property".freeze property :partOfTrip, comment: %(Identifies that this Trip is a subTrip of another Trip. For example Day 1, Day 2, etc. of a multi-day trip.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, domainIncludes: "schema:Trip".freeze, label: "partOfTrip".freeze, rangeIncludes: "schema:Trip".freeze, "schema:category": "issue-1810".freeze, "schema:inverseOf": "schema:subTrip".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, type: "rdf:Property".freeze property :participant, comment: %(Other co-agents that participated in the action indirectly. e.g. John wrote a book with Steve.).freeze, @@ -21666,11 +22147,11 @@ module RDF::Vocab
  • Note 4: Note that you can use minValue and maxValue to indicate ranges.
  • ).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "payload".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :paymentAccepted, comment: %(Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.).freeze, @@ -21725,35 +22206,35 @@ module RDF::Vocab type: "rdf:Property".freeze property :percentile10, comment: %(The 10th percentile value.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, domainIncludes: "schema:QuantitativeValueDistribution".freeze, label: "percentile10".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-1698".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, type: "rdf:Property".freeze property :percentile25, comment: %(The 25th percentile value.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, domainIncludes: "schema:QuantitativeValueDistribution".freeze, label: "percentile25".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-1698".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, type: "rdf:Property".freeze property :percentile75, comment: %(The 75th percentile value.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, domainIncludes: "schema:QuantitativeValueDistribution".freeze, label: "percentile75".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-1698".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, type: "rdf:Property".freeze property :percentile90, comment: %(The 90th percentile value.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, domainIncludes: "schema:QuantitativeValueDistribution".freeze, label: "percentile90".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-1698".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, type: "rdf:Property".freeze property :performTime, comment: %(The length of time it takes to perform instructions or a direction \(not including time to prepare the supplies\), in ISO 8601 duration format.).freeze, @@ -21800,26 +22281,26 @@ module RDF::Vocab type: "rdf:Property".freeze property :permittedUsage, comment: %(Indications regarding the permitted usage of the accommodation.).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, domainIncludes: "schema:Accommodation".freeze, label: "permittedUsage".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, type: "rdf:Property".freeze property :petsAllowed, comment: %(Indicates whether pets are allowed to enter the accommodation or lodging business. More detailed information can be put in a text value.).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, domainIncludes: ["schema:Accommodation".freeze, "schema:ApartmentComplex".freeze, "schema:FloorPlan".freeze, "schema:LodgingBusiness".freeze], label: "petsAllowed".freeze, rangeIncludes: ["schema:Boolean".freeze, "schema:Text".freeze], + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, type: "rdf:Property".freeze property :phoneticText, comment: %(Representation of a text textValue using the specified speechToTextMarkup. For example the city name of Houston in IPA: /ˈhjuːstən/.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2108".freeze, domainIncludes: "schema:PronounceableText".freeze, label: "phoneticText".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-2108".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2108".freeze, type: "rdf:Property".freeze property :photo, comment: %(A photograph of this place.).freeze, @@ -21837,12 +22318,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :physicalRequirement, comment: %(A description of the types of physical activity associated with the job. Defined terms such as those in O*net may be used, but note that there is no way to specify the level of ability as well as its nature when using a defined term.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2384".freeze, domainIncludes: "schema:JobPosting".freeze, label: "physicalRequirement".freeze, rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze, "schema:URL".freeze], "schema:category": "issue-2384".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2384".freeze, type: "rdf:Property".freeze property :physiologicalBenefits, comment: %(Specific physiologic benefits associated to the plan.).freeze, @@ -21889,12 +22370,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :populationType, comment: %(Indicates the populationType common to all members of a StatisticalPopulation.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, domainIncludes: "schema:StatisticalPopulation".freeze, label: "populationType".freeze, rangeIncludes: "schema:Class".freeze, "schema:category": "issue-2291".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2291".freeze, type: "rdf:Property".freeze property :position, comment: %(The position of an item in a series or sequence of items.).freeze, @@ -21931,9 +22412,47 @@ module RDF::Vocab type: "rdf:Property".freeze property :postalCode, comment: %(The postal code. For example, 94043.).freeze, - domainIncludes: ["schema:GeoCoordinates".freeze, "schema:GeoShape".freeze, "schema:PostalAddress".freeze], + domainIncludes: ["schema:DefinedRegion".freeze, "schema:GeoCoordinates".freeze, "schema:GeoShape".freeze, "schema:PostalAddress".freeze], label: "postalCode".freeze, rangeIncludes: "schema:Text".freeze, + "schema:category": "issue-2506".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, + type: "rdf:Property".freeze + property :postalCodeBegin, + comment: %(First postal code in a range \(included\).).freeze, + domainIncludes: "schema:PostalCodeRangeSpecification".freeze, + label: "postalCodeBegin".freeze, + rangeIncludes: "schema:Text".freeze, + "schema:category": "issue-2506".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, + type: "rdf:Property".freeze + property :postalCodeEnd, + comment: %(Last postal code in the range \(included\). Needs to be after postalCodeBegin.).freeze, + domainIncludes: "schema:PostalCodeRangeSpecification".freeze, + label: "postalCodeEnd".freeze, + rangeIncludes: "schema:Text".freeze, + "schema:category": "issue-2506".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, + type: "rdf:Property".freeze + property :postalCodePrefix, + comment: %(A defined range of postal codes indicated by a common textual prefix. Used for non-numeric systems such as UK.).freeze, + domainIncludes: "schema:DefinedRegion".freeze, + label: "postalCodePrefix".freeze, + rangeIncludes: "schema:Text".freeze, + "schema:category": "issue-2506".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, + type: "rdf:Property".freeze + property :postalCodeRange, + comment: %(A defined range of postal codes.).freeze, + domainIncludes: "schema:DefinedRegion".freeze, + label: "postalCodeRange".freeze, + rangeIncludes: "schema:PostalCodeRangeSpecification".freeze, + "schema:category": "issue-2506".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, type: "rdf:Property".freeze property :potentialAction, comment: %(Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role.).freeze, @@ -21950,10 +22469,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :predecessorOf, comment: %(A pointer from a previous, often discontinued variant of the product to its newer variant.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:ProductModel".freeze, label: "predecessorOf".freeze, rangeIncludes: "schema:ProductModel".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :pregnancyCategory, comment: %(Pregnancy category of this drug.).freeze, @@ -22026,10 +22545,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :priceComponent, comment: %(This property links to all UnitPriceSpecification nodes that apply in parallel for the CompoundPriceSpecification node.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:CompoundPriceSpecification".freeze, label: "priceComponent".freeze, rangeIncludes: "schema:UnitPriceSpecification".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :priceCurrency, comment: %(The currency of the price, or a price component when attached to PriceSpecification and its subtypes.

    @@ -22047,17 +22566,17 @@ module RDF::Vocab type: "rdf:Property".freeze property :priceSpecification, comment: %(One or more detailed price specifications, indicating the unit price and delivery or payment charges.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze, "schema:TradeAction".freeze], label: "priceSpecification".freeze, rangeIncludes: "schema:PriceSpecification".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :priceType, comment: %(A short text or acronym indicating multiple price specifications for the same offer, e.g. SRP for the suggested retail price or INVOICE for the invoice price, mostly used in the car industry.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:UnitPriceSpecification".freeze, label: "priceType".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :priceValidUntil, comment: %(The date after which the price is no longer available.).freeze, @@ -22150,22 +22669,22 @@ module RDF::Vocab type: "rdf:Property".freeze property :productReturnDays, comment: %(The productReturnDays property indicates the number of days \(from purchase\) within which relevant product return policy is applicable.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, domainIncludes: "schema:ProductReturnPolicy".freeze, label: "productReturnDays".freeze, rangeIncludes: "schema:Integer".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://attic.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, "schema:supersededBy": "schema:merchantReturnDays".freeze, type: "rdf:Property".freeze property :productReturnLink, comment: %(Indicates a Web page or service by URL, for product return.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, domainIncludes: "schema:ProductReturnPolicy".freeze, label: "productReturnLink".freeze, rangeIncludes: "schema:URL".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://attic.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, "schema:supersededBy": "schema:merchantReturnLink".freeze, type: "rdf:Property".freeze property :productSupported, @@ -22182,10 +22701,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :productionDate, comment: %(The date of production of the item, e.g. vehicle.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: ["schema:Product".freeze, "schema:Vehicle".freeze], label: "productionDate".freeze, rangeIncludes: "schema:Date".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :proficiencyLevel, comment: %(Proficiency needed for this content; expected values: 'Beginner', 'Expert'.).freeze, @@ -22207,21 +22726,21 @@ module RDF::Vocab type: "rdf:Property".freeze property :programPrerequisites, comment: %(Prerequisites for enrolling in the program.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, domainIncludes: "schema:EducationalOccupationalProgram".freeze, label: "programPrerequisites".freeze, rangeIncludes: ["schema:AlignmentObject".freeze, "schema:Course".freeze, "schema:EducationalOccupationalCredential".freeze, "schema:Text".freeze], "schema:category": "issue-2289".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, type: "rdf:Property".freeze property :programType, comment: %(The type of educational or occupational program. For example, classroom, internship, alternance, etc..).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2460".freeze, domainIncludes: "schema:EducationalOccupationalProgram".freeze, label: "programType".freeze, rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze], "schema:category": "issue-2460".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2460".freeze, type: "rdf:Property".freeze property :programmingLanguage, comment: %(The computer programming language.).freeze, @@ -22259,11 +22778,11 @@ module RDF::Vocab type: "rdf:Property".freeze property :provider, comment: %(The service provider, service operator, or service performer; the goods producer. Another party \(a seller\) may offer those services or goods on behalf of the provider. A provider may also serve as the seller.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, domainIncludes: ["schema:CreativeWork".freeze, "schema:EducationalOccupationalProgram".freeze, "schema:Invoice".freeze, "schema:ParcelDelivery".freeze, "schema:Reservation".freeze, "schema:Service".freeze, "schema:Trip".freeze], label: "provider".freeze, rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], "schema:category": "issue-2289".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, type: "rdf:Property".freeze property :providerMobility, comment: %(Indicates the mobility of a provided service \(e.g. 'static', 'dynamic'\).).freeze, @@ -22292,12 +22811,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :publicTransportClosuresInfo, comment: %(Information about public transport closures.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, domainIncludes: "schema:SpecialAnnouncement".freeze, label: "publicTransportClosuresInfo".freeze, rangeIncludes: ["schema:URL".freeze, "schema:WebContent".freeze], "schema:category": "issue-2490".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, type: "rdf:Property".freeze property :publication, comment: %(A publication event associated with the item.).freeze, @@ -22349,28 +22868,28 @@ module RDF::Vocab type: "rdf:Property".freeze property :purchaseDate, comment: %(The date the item e.g. vehicle was purchased by the current owner.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: ["schema:Product".freeze, "schema:Vehicle".freeze], label: "purchaseDate".freeze, rangeIncludes: "schema:Date".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :qualifications, comment: %(Specific qualifications required for this role or Occupation.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1698".freeze, "https://github.com/schemaorg/schemaorg/issues/1779".freeze], domainIncludes: ["schema:JobPosting".freeze, "schema:Occupation".freeze], label: "qualifications".freeze, rangeIncludes: ["schema:EducationalOccupationalCredential".freeze, "schema:Text".freeze], "schema:category": ["issue-1698".freeze, "issue-1779".freeze], "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1698".freeze, "https://github.com/schemaorg/schemaorg/issues/1779".freeze], type: "rdf:Property".freeze property :quarantineGuidelines, comment: %(Guidelines about quarantine rules, e.g. in the context of a pandemic.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, domainIncludes: "schema:SpecialAnnouncement".freeze, label: "quarantineGuidelines".freeze, rangeIncludes: ["schema:URL".freeze, "schema:WebContent".freeze], "schema:category": "issue-2490".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, type: "rdf:Property".freeze property :query, comment: %(A sub property of instrument. The query used on this action.).freeze, @@ -22407,12 +22926,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :ratingExplanation, comment: %(A short explanation \(e.g. one to two sentences\) providing background context and other information that led to the conclusion expressed in the rating. This is particularly applicable to ratings associated with "fact check" markup using ClaimReview.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2300".freeze, domainIncludes: "schema:Rating".freeze, label: "ratingExplanation".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-2300".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2300".freeze, type: "rdf:Property".freeze property :ratingValue, comment: %(The rating for the content.

    @@ -22498,12 +23017,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :recognizedBy, comment: %(An organization that acknowledges the validity, value or utility of a credential. Note: recognition may include a process of quality assurance or accreditation.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, domainIncludes: "schema:EducationalOccupationalCredential".freeze, label: "recognizedBy".freeze, rangeIncludes: "schema:Organization".freeze, "schema:category": "issue-1779".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, type: "rdf:Property".freeze property :recognizingAuthority, comment: %(If applicable, the organization that officially recognizes this entity as part of its endorsed system of medicine.).freeze, @@ -22528,19 +23047,19 @@ module RDF::Vocab type: "rdf:Property".freeze property :recordLabel, comment: %(The label that issued the release.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, domainIncludes: "schema:MusicRelease".freeze, equivalentProperty: "mo:label".freeze, label: "recordLabel".freeze, rangeIncludes: "schema:Organization".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "rdf:Property".freeze property :recordedAs, comment: %(An audio recording of the work.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, domainIncludes: "schema:MusicComposition".freeze, label: "recordedAs".freeze, rangeIncludes: "schema:MusicRecording".freeze, "schema:inverseOf": "schema:recordingOf".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "rdf:Property".freeze property :recordedAt, comment: %(The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event.).freeze, @@ -22558,27 +23077,27 @@ module RDF::Vocab type: "rdf:Property".freeze property :recordingOf, comment: %(The composition this track is a recording of.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, domainIncludes: "schema:MusicRecording".freeze, label: "recordingOf".freeze, rangeIncludes: "schema:MusicComposition".freeze, "schema:inverseOf": "schema:recordedAs".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "rdf:Property".freeze property :recourseLoan, comment: %(The only way you get the money back in the event of default is the security. Recourse is where you still have the opportunity to go back to the borrower for the rest of the money.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], domainIncludes: "schema:LoanOrCredit".freeze, label: "recourseLoan".freeze, rangeIncludes: "schema:Boolean".freeze, "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], type: "rdf:Property".freeze property :referenceQuantity, comment: %(The reference quantity for which a certain price applies, e.g. 1 EUR per 4 kWh of electricity. This property is a replacement for unitOfMeasurement for the advanced cases where the price does not relate to a standard unit.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsProperties".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze], domainIncludes: "schema:UnitPriceSpecification".freeze, label: "referenceQuantity".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsProperties".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze], type: "rdf:Property".freeze property :referencesOrder, comment: %(The Order\(s\) related to this Invoice. One or more Orders may be combined into a single Invoice.).freeze, @@ -22588,12 +23107,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :refundType, comment: %(A refundType, from an enumerated list.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, domainIncludes: "schema:MerchantReturnPolicy".freeze, label: "refundType".freeze, rangeIncludes: "schema:RefundTypeEnumeration".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, type: "rdf:Property".freeze property :regionDrained, comment: %(The anatomical or organ system drained by this vessel; generally refers to a specific part of an organ.).freeze, @@ -22657,10 +23176,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :releaseDate, comment: %(The release date of a product or product model. This can be used to distinguish the exact variant of a product.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:Product".freeze, label: "releaseDate".freeze, rangeIncludes: "schema:Date".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :releaseNotes, comment: %(Description of what changed in this version.).freeze, @@ -22670,11 +23189,11 @@ module RDF::Vocab type: "rdf:Property".freeze property :releaseOf, comment: %(The album this is a release of.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, domainIncludes: "schema:MusicRelease".freeze, label: "releaseOf".freeze, rangeIncludes: "schema:MusicAlbum".freeze, "schema:inverseOf": "schema:albumRelease".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "rdf:Property".freeze property :releasedEvent, comment: %(The place and time the release was issued, expressed as a PublicationEvent.).freeze, @@ -22684,11 +23203,11 @@ module RDF::Vocab type: "rdf:Property".freeze property :relevantOccupation, comment: %(The Occupation for the JobPosting.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, domainIncludes: "schema:JobPosting".freeze, label: "relevantOccupation".freeze, rangeIncludes: "schema:Occupation".freeze, "schema:category": "issue-1698".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, type: "rdf:Property".freeze property :relevantSpecialty, comment: %(If applicable, a medical specialty in which this entity is relevant.).freeze, @@ -22705,31 +23224,31 @@ module RDF::Vocab type: "rdf:Property".freeze property :renegotiableLoan, comment: %(Whether the terms for payment of interest can be renegotiated during the life of the loan.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], domainIncludes: "schema:LoanOrCredit".freeze, label: "renegotiableLoan".freeze, rangeIncludes: "schema:Boolean".freeze, "schema:category": "issue-1253".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, "https://github.com/schemaorg/schemaorg/issues/1253".freeze], type: "rdf:Property".freeze property :repeatCount, comment: %(Defines the number of times a recurring Event will take place).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, domainIncludes: "schema:Schedule".freeze, label: "repeatCount".freeze, rangeIncludes: "schema:Integer".freeze, "schema:category": "issue-1457".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, type: "rdf:Property".freeze property :repeatFrequency, comment: %(Defines the frequency at which Events will occur according to a schedule Schedule. The intervals between events should be defined as a Duration of time.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, domainIncludes: "schema:Schedule".freeze, label: "repeatFrequency".freeze, rangeIncludes: ["schema:Duration".freeze, "schema:Text".freeze], "schema:category": "issue-1457".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, subPropertyOf: "schema:frequency".freeze, type: "rdf:Property".freeze property :repetitions, @@ -22773,10 +23292,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :requiredCollateral, comment: %(Assets required to secure loan or credit repayments. It may take form of third party pledge, goods, financial instruments \(cash, securities, etc.\)).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, domainIncludes: "schema:LoanOrCredit".freeze, label: "requiredCollateral".freeze, rangeIncludes: ["schema:Text".freeze, "schema:Thing".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO".freeze, type: "rdf:Property".freeze property :requiredGender, comment: %(Audiences defined by a person's gender.).freeze, @@ -22811,11 +23330,11 @@ module RDF::Vocab type: "rdf:Property".freeze property :requiresSubscription, comment: %(Indicates if use of the media require a subscription \(either paid or free\). Allowed values are true or false \(note that an earlier version had 'yes', 'no'\).).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, domainIncludes: ["schema:ActionAccessSpecification".freeze, "schema:MediaObject".freeze], label: "requiresSubscription".freeze, rangeIncludes: ["schema:Boolean".freeze, "schema:MediaSubscription".freeze], "schema:category": "issue-1741".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1741".freeze, type: "rdf:Property".freeze property :reservationFor, comment: %(The thing -- flight, event, restaurant,etc. being reserved.).freeze, @@ -22843,11 +23362,11 @@ module RDF::Vocab type: "rdf:Property".freeze property :responsibilities, comment: %(Responsibilities associated with this role or Occupation.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, domainIncludes: ["schema:JobPosting".freeze, "schema:Occupation".freeze], label: "responsibilities".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-1698".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1698".freeze, type: "rdf:Property".freeze property :restPeriods, comment: %(How often one should break from the activity.).freeze, @@ -22878,21 +23397,21 @@ module RDF::Vocab type: "rdf:Property".freeze property :returnFees, comment: %(Indicates \(via enumerated options\) the return fees policy for a MerchantReturnPolicy).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, domainIncludes: "schema:MerchantReturnPolicy".freeze, label: "returnFees".freeze, rangeIncludes: "schema:ReturnFeesEnumeration".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, type: "rdf:Property".freeze property :returnPolicyCategory, comment: %(A returnPolicyCategory expresses at most one of several enumerated kinds of return.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, domainIncludes: "schema:MerchantReturnPolicy".freeze, label: "returnPolicyCategory".freeze, rangeIncludes: "schema:MerchantReturnEnumeration".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, type: "rdf:Property".freeze property :review, comment: %(A review of the item.).freeze, @@ -22902,11 +23421,11 @@ module RDF::Vocab type: "rdf:Property".freeze property :reviewAspect, comment: %(This Review or Rating is relevant to this part or facet of the itemReviewed.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1689".freeze, domainIncludes: ["schema:Guide".freeze, "schema:Rating".freeze, "schema:Review".freeze], label: "reviewAspect".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-1689".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1689".freeze, type: "rdf:Property".freeze property :reviewBody, comment: %(The actual body of the review.).freeze, @@ -22970,11 +23489,11 @@ module RDF::Vocab
  • Note 3: Note that you can use minValue and maxValue to indicate ranges.
  • ).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: ["schema:BusOrCoach".freeze, "schema:Car".freeze], label: "roofLoad".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :rsvpResponse, comment: %(The response \(yes, no, maybe\) to the RSVP.).freeze, @@ -23004,12 +23523,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :rxcui, comment: %(The RxCUI drug identifier from RXNORM.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, domainIncludes: "schema:Drug".freeze, label: "rxcui".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-1062".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, type: "rdf:Property".freeze property :safetyConsideration, comment: %(Any potential safety concern associated with the supplement. May include interactions with other drugs and foods, pregnancy, breastfeeding, known adverse reactions, and documented efficacy of the supplement.).freeze, @@ -23026,12 +23545,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :salaryUponCompletion, comment: %(The expected salary upon completing the training.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, domainIncludes: "schema:EducationalOccupationalProgram".freeze, label: "salaryUponCompletion".freeze, rangeIncludes: "schema:MonetaryAmountDistribution".freeze, "schema:category": "issue-2289".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, type: "rdf:Property".freeze property :sameAs, comment: %(URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or official website.).freeze, @@ -23054,12 +23573,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :scheduleTimezone, comment: %(Indicates the timezone for which the time\(s\) indicated in the Schedule are given. The value provided should be among those listed in the IANA Time Zone Database.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, domainIncludes: "schema:Schedule".freeze, label: "scheduleTimezone".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-1457".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1457".freeze, type: "rdf:Property".freeze property :scheduledPaymentDate, comment: %(The date the invoice is scheduled to be paid.).freeze, @@ -23081,12 +23600,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :schoolClosuresInfo, comment: %(Information about school closures.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, domainIncludes: "schema:SpecialAnnouncement".freeze, label: "schoolClosuresInfo".freeze, rangeIncludes: ["schema:URL".freeze, "schema:WebContent".freeze], "schema:category": "issue-2490".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, type: "rdf:Property".freeze property :screenCount, comment: %(The number of screens in the movie theater.).freeze, @@ -23102,31 +23621,31 @@ module RDF::Vocab type: "rdf:Property".freeze property :sdDatePublished, comment: %(Indicates the date on which the current structured data was generated / published. Typically used alongside sdPublisher).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1886".freeze, domainIncludes: "schema:CreativeWork".freeze, label: "sdDatePublished".freeze, rangeIncludes: "schema:Date".freeze, "schema:category": "issue-1886".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1886".freeze, type: "rdf:Property".freeze property :sdLicense, comment: %(A license document that applies to this structured data, typically indicated by URL.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1886".freeze, domainIncludes: "schema:CreativeWork".freeze, label: "sdLicense".freeze, rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze], "schema:category": "issue-1886".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1886".freeze, type: "rdf:Property".freeze property :sdPublisher, comment: %(Indicates the party responsible for generating and publishing the current structured data markup, typically in cases where the structured data is derived automatically from existing published content but published on a different site. For example, student projects and open data initiatives often re-publish existing content with more explicitly structured metadata. The sdPublisher property helps make such practices more explicit.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1886".freeze, domainIncludes: "schema:CreativeWork".freeze, label: "sdPublisher".freeze, rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], "schema:category": "issue-1886".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1886".freeze, type: "rdf:Property".freeze property :season, comment: %(A season in a media series.).freeze, @@ -23172,11 +23691,11 @@ module RDF::Vocab comment: %(The number of persons that can be seated \(e.g. in a vehicle\), both in terms of the physical space available, and in terms of limitations set by law.

    Typical unit code\(s\): C62 for persons).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "seatingCapacity".freeze, rangeIncludes: ["schema:Number".freeze, "schema:QuantitativeValue".freeze], "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :seatingType, comment: %(The type/class of the seat.).freeze, @@ -23193,12 +23712,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :securityClearanceRequirement, comment: %(A description of any security clearance requirements of the job.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2384".freeze, domainIncludes: "schema:JobPosting".freeze, label: "securityClearanceRequirement".freeze, rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], "schema:category": "issue-2384".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2384".freeze, type: "rdf:Property".freeze property :securityScreening, comment: %(The type of security screening the passenger is subject to.).freeze, @@ -23208,10 +23727,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :seeks, comment: %(A pointer to products or services sought by the organization or person \(demand\).).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze], label: "seeks".freeze, rangeIncludes: "schema:Demand".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :seller, comment: %(An entity which offers \(sells / leases / lends / loans\) the services / goods. A seller may also be a provider.).freeze, @@ -23229,12 +23748,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :sensoryRequirement, comment: %(A description of any sensory requirements and levels necessary to function on the job, including hearing and vision. Defined terms such as those in O*net may be used, but note that there is no way to specify the level of ability as well as its nature when using a defined term.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2384".freeze, domainIncludes: "schema:JobPosting".freeze, label: "sensoryRequirement".freeze, rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze, "schema:URL".freeze], "schema:category": "issue-2384".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2384".freeze, type: "rdf:Property".freeze property :sensoryUnit, comment: %(The neurological pathway extension that inputs and sends information to the brain or spinal cord.).freeze, @@ -23245,10 +23764,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :serialNumber, comment: %(The serial number or any alphanumeric identifier of a particular product. When attached to an offer, it is a shortcut for the serial number of the product included in the offer.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Demand".freeze, "schema:IndividualProduct".freeze, "schema:Offer".freeze], label: "serialNumber".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, subPropertyOf: "schema:identifier".freeze, type: "rdf:Property".freeze property :seriousAdverseOutcome, @@ -23345,13 +23864,49 @@ module RDF::Vocab rangeIncludes: "schema:CreativeWork".freeze, type: "rdf:Property".freeze property :shippingDestination, - comment: %(indicates \(posssibly multiple\) shipping destinations. These can be defined in several ways e.g. postalCode ranges.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, - domainIncludes: "schema:OfferShippingDetails".freeze, + comment: %(indicates \(possibly multiple\) shipping destinations. These can be defined in several ways e.g. postalCode ranges.).freeze, + domainIncludes: ["schema:DeliveryTimeSettings".freeze, "schema:OfferShippingDetails".freeze, "schema:ShippingRateSettings".freeze], label: "shippingDestination".freeze, rangeIncludes: "schema:DefinedRegion".freeze, "schema:category": "issue-2506".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, + type: "rdf:Property".freeze + property :shippingDetails, + comment: %(Indicates information about the shipping policies and options associated with an Offer.).freeze, + domainIncludes: "schema:Offer".freeze, + label: "shippingDetails".freeze, + rangeIncludes: "schema:OfferShippingDetails".freeze, + "schema:category": "issue-2506".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, + type: "rdf:Property".freeze + property :shippingLabel, + comment: %(Label to match an OfferShippingDetails with a ShippingRateSettings \(within the context of a shippingSettingsLink cross-reference\).).freeze, + domainIncludes: ["schema:OfferShippingDetails".freeze, "schema:ShippingRateSettings".freeze], + label: "shippingLabel".freeze, + rangeIncludes: "schema:Text".freeze, + "schema:category": "issue-2506".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, + type: "rdf:Property".freeze + property :shippingRate, + comment: %(The shipping rate is the cost of shipping to the specified destination. Typically, the maxValue and currency values \(of the MonetaryAmount\) are most appropriate.).freeze, + domainIncludes: ["schema:OfferShippingDetails".freeze, "schema:ShippingRateSettings".freeze], + label: "shippingRate".freeze, + rangeIncludes: "schema:MonetaryAmount".freeze, + "schema:category": "issue-2506".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, + type: "rdf:Property".freeze + property :shippingSettingsLink, + comment: %(Link to a page containing ShippingRateSettings and DeliveryTimeSettings details.).freeze, + domainIncludes: "schema:OfferShippingDetails".freeze, + label: "shippingSettingsLink".freeze, + rangeIncludes: "schema:URL".freeze, + "schema:category": "issue-2506".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, type: "rdf:Property".freeze property :sibling, comment: %(A sibling of the person.).freeze, @@ -23402,18 +23957,18 @@ module RDF::Vocab type: "rdf:Property".freeze property :skills, comment: %(A statement of knowledge, skill, ability, task or any other assertion expressing a competency that is desired or required to fulfill this role or to work in this occupation.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1698".freeze, "https://github.com/schemaorg/schemaorg/issues/2322".freeze], domainIncludes: ["schema:JobPosting".freeze, "schema:Occupation".freeze], label: "skills".freeze, rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze], "schema:category": ["issue-1698".freeze, "issue-2322".freeze], + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1698".freeze, "https://github.com/schemaorg/schemaorg/issues/2322".freeze], type: "rdf:Property".freeze property :sku, comment: %(The Stock Keeping Unit \(SKU\), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze, "schema:Product".freeze], label: "sku".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, subPropertyOf: "schema:identifier".freeze, type: "rdf:Property".freeze property :slogan, @@ -23424,10 +23979,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :smokingAllowed, comment: %(Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room.).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, domainIncludes: "schema:Place".freeze, label: "smokingAllowed".freeze, rangeIncludes: "schema:Boolean".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, type: "rdf:Property".freeze property :sodiumContent, comment: %(The number of milligrams of sodium.).freeze, @@ -23503,11 +24058,11 @@ module RDF::Vocab For more sophisticated markup of speakable sections beyond simple ID references, either CSS selectors or XPath expressions to pick out document section\(s\) as speakable. For this we define a supporting type, SpeakableSpecification which is defined to be a possible value of the speakable property.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1389".freeze, domainIncludes: ["schema:Article".freeze, "schema:WebPage".freeze], label: "speakable".freeze, rangeIncludes: ["schema:SpeakableSpecification".freeze, "schema:URL".freeze], "schema:category": "issue-1389".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1389".freeze, type: "rdf:Property".freeze property :specialCommitments, comment: %(Any special commitments associated with this job posting. Valid entries include VeteranCommit, MilitarySpouseCommit, etc.).freeze, @@ -23531,12 +24086,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :speechToTextMarkup, comment: %(Form of markup used. eg. SSML or IPA.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2108".freeze, domainIncludes: "schema:PronounceableText".freeze, label: "speechToTextMarkup".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-2108".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2108".freeze, type: "rdf:Property".freeze property :speed, comment: %(The speed range of the vehicle. If the vehicle is powered by an engine, the upper limit of the speed range \(indicated by maxValue should be the maximum speed achievable under regular conditions.

    @@ -23545,20 +24100,20 @@ module RDF::Vocab *Note 1: Use minValue and maxValue to indicate the range. Typically, the minimal value is zero. * Note 2: There are many different ways of measuring the speed range. You can link to information about how the given value has been determined using the valueReference property.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "speed".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :spokenByCharacter, comment: %(The \(e.g. fictional\) character, Person or Organization to whom the quotation is attributed within the containing CreativeWork.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/271".freeze, domainIncludes: "schema:Quotation".freeze, label: "spokenByCharacter".freeze, rangeIncludes: ["schema:Organization".freeze, "schema:Person".freeze], "schema:category": "issue-271".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/271".freeze, type: "rdf:Property".freeze property :sponsor, comment: %(A person or organization that supports a thing through a pledge, promise, or financial contribution. e.g. a sponsor of a Medical Study or a corporate sponsor of an event.).freeze, @@ -23568,12 +24123,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :sport, comment: %(A type of sport \(e.g. Baseball\).).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1951".freeze, domainIncludes: ["schema:SportsEvent".freeze, "schema:SportsOrganization".freeze], label: "sport".freeze, rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], "schema:category": "issue-1951".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1951".freeze, type: "rdf:Property".freeze property :sportsActivityLocation, comment: %(A sub property of location. The sports activity location where this action occurred.).freeze, @@ -23618,37 +24173,37 @@ module RDF::Vocab type: "rdf:Property".freeze property :starRating, comment: %(An official rating for a lodging business or food establishment, e.g. from national associations or standards bodies. Use the author property to indicate the rating organization, e.g. as an Organization with name such as \(e.g. HOTREC, DEHOGA, WHR, or Hotelstars\).).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, domainIncludes: ["schema:FoodEstablishment".freeze, "schema:LodgingBusiness".freeze], label: "starRating".freeze, rangeIncludes: "schema:Rating".freeze, + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, type: "rdf:Property".freeze property :startDate, comment: %(The start date and time of the item \(in ISO 8601 date format\).).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2486".freeze, domainIncludes: ["schema:CreativeWorkSeason".freeze, "schema:CreativeWorkSeries".freeze, "schema:DatedMoneySpecification".freeze, "schema:EducationalOccupationalProgram".freeze, "schema:Event".freeze, "schema:Role".freeze, "schema:Schedule".freeze], label: "startDate".freeze, rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze], "schema:category": "issue-2486".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2486".freeze, type: "rdf:Property".freeze property :startOffset, comment: %(The start time of the clip expressed as the number of seconds from the beginning of the work.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2021".freeze, domainIncludes: "schema:Clip".freeze, label: "startOffset".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-2021".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2021".freeze, type: "rdf:Property".freeze property :startTime, comment: %(The startTime of something. For a reserved event or service \(e.g. FoodEstablishmentReservation\), the time that it is expected to start. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to December. For media, including audio and video, it's the time offset of the start of a clip within a larger file.

    Note that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2493".freeze, domainIncludes: ["schema:Action".freeze, "schema:FoodEstablishmentReservation".freeze, "schema:MediaObject".freeze, "schema:Schedule".freeze], label: "startTime".freeze, rangeIncludes: ["schema:DateTime".freeze, "schema:Time".freeze], "schema:category": "issue-2493".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2493".freeze, type: "rdf:Property".freeze property :status, comment: %(The status of the study \(enumerated\).).freeze, @@ -23659,10 +24214,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :steeringPosition, comment: %(The position of the steering wheel or similar device \(mostly for cars\).).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "steeringPosition".freeze, rangeIncludes: "schema:SteeringPositionValue".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :step, comment: %(A single step item \(as HowToStep, text, document, video, etc.\) or a HowToSection.).freeze, @@ -23801,38 +24356,38 @@ module RDF::Vocab type: "rdf:Property".freeze property :subTrip, comment: %(Identifies a Trip that is a subTrip of this Trip. For example Day 1, Day 2, etc. of a multi-day trip.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, domainIncludes: "schema:Trip".freeze, label: "subTrip".freeze, rangeIncludes: "schema:Trip".freeze, "schema:category": "issue-1810".freeze, "schema:inverseOf": "schema:partOfTrip".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze, type: "rdf:Property".freeze property :subjectOf, comment: %(A CreativeWork or Event about this Thing.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1670".freeze, domainIncludes: "schema:Thing".freeze, label: "subjectOf".freeze, rangeIncludes: ["schema:CreativeWork".freeze, "schema:Event".freeze], "schema:category": "issue-1670".freeze, "schema:inverseOf": "schema:about".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1670".freeze, type: "rdf:Property".freeze property :subtitleLanguage, comment: %(Languages in which subtitles/captions are available, in IETF BCP 47 standard format.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2110".freeze, domainIncludes: ["schema:BroadcastEvent".freeze, "schema:Movie".freeze, "schema:ScreeningEvent".freeze, "schema:TVEpisode".freeze], label: "subtitleLanguage".freeze, rangeIncludes: ["schema:Language".freeze, "schema:Text".freeze], "schema:category": "issue-2110".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2110".freeze, type: "rdf:Property".freeze property :successorOf, comment: %(A pointer from a newer variant of a product to its previous, often discontinued predecessor.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:ProductModel".freeze, label: "successorOf".freeze, rangeIncludes: "schema:ProductModel".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :sugarContent, comment: %(The number of grams of sugar.).freeze, @@ -23964,12 +24519,21 @@ module RDF::Vocab type: "rdf:Property".freeze property :taxID, comment: %(The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze], label: "taxID".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, subPropertyOf: "schema:identifier".freeze, type: "rdf:Property".freeze + property :teaches, + comment: %(The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term.).freeze, + domainIncludes: ["schema:CreativeWork".freeze, "schema:EducationEvent".freeze], + label: "teaches".freeze, + rangeIncludes: ["schema:DefinedTerm".freeze, "schema:Text".freeze], + "schema:category": "issue-2427".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2427".freeze, + type: "rdf:Property".freeze property :telephone, comment: %(The telephone number.).freeze, domainIncludes: ["schema:ContactPoint".freeze, "schema:Organization".freeze, "schema:Person".freeze, "schema:Place".freeze], @@ -23996,39 +24560,39 @@ module RDF::Vocab type: "rdf:Property".freeze property :termCode, comment: %(A code that identifies this DefinedTerm within a DefinedTermSet).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, domainIncludes: "schema:DefinedTerm".freeze, label: "termCode".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-894".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/894".freeze, type: "rdf:Property".freeze property :termDuration, comment: %(The amount of time in a term as defined by the institution. A term is a length of time where students take one or more classes. Semesters and quarters are common units for term.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, domainIncludes: "schema:EducationalOccupationalProgram".freeze, label: "termDuration".freeze, rangeIncludes: "schema:Duration".freeze, "schema:category": "issue-2419".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, type: "rdf:Property".freeze property :termsOfService, comment: %(Human-readable terms of service documentation.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1423".freeze, domainIncludes: "schema:Service".freeze, label: "termsOfService".freeze, rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], "schema:category": "issue-1423".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1423".freeze, type: "rdf:Property".freeze property :termsPerYear, comment: %(The number of times terms of study are offered per year. Semesters and quarters are common units for term. For example, if the student can only take 2 semesters for the program in one year, then termsPerYear should be 2.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, domainIncludes: "schema:EducationalOccupationalProgram".freeze, label: "termsPerYear".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-2419".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, type: "rdf:Property".freeze property :text, comment: %(The textual content of this CreativeWork.).freeze, @@ -24038,12 +24602,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :textValue, comment: %(Text value being annotated.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2108".freeze, domainIncludes: "schema:PronounceableText".freeze, label: "textValue".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-2108".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2108".freeze, type: "rdf:Property".freeze property :thumbnail, comment: %(Thumbnail image for an image or video.).freeze, @@ -24083,12 +24647,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :timeOfDay, comment: %(The time of day the program normally runs. For example, "evenings".).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, domainIncludes: "schema:EducationalOccupationalProgram".freeze, label: "timeOfDay".freeze, rangeIncludes: "schema:Text".freeze, "schema:category": "issue-2419".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, type: "rdf:Property".freeze property :timeRequired, comment: %(Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'PT30M', 'PT1H25M'.).freeze, @@ -24098,12 +24662,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :timeToComplete, comment: %(The expected length of time to complete the program if attending full-time.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, domainIncludes: "schema:EducationalOccupationalProgram".freeze, label: "timeToComplete".freeze, rangeIncludes: "schema:Duration".freeze, "schema:category": "issue-2289".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2289".freeze, type: "rdf:Property".freeze property :tissueSample, comment: %(The type of tissue sample required for the test.).freeze, @@ -24118,6 +24682,20 @@ module RDF::Vocab label: "title".freeze, rangeIncludes: "schema:Text".freeze, type: "rdf:Property".freeze + property :titleEIDR, + comment: %(An EIDR \(Entertainment Identifier Registry\) identifier representing at the most general/abstract level, a work of film or television.

    + +For example, the motion picture known as "Ghostbusters" has a titleEIDR of "10.5240/7EC7-228A-510A-053E-CBB8-J". This title \(or work\) may have several variants, which EIDR calls "edits". See editEIDR.

    + +Since schema.org types like Movie and TVEpisode can be used for both works and their multiple expressions, it is possible to use titleEIDR alone \(for a general description\), or alongside editEIDR for a more edit-specific description.).freeze, + domainIncludes: ["schema:Movie".freeze, "schema:TVEpisode".freeze], + label: "titleEIDR".freeze, + rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], + "schema:category": "issue-2469".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2469".freeze, + subPropertyOf: "schema:identifier".freeze, + type: "rdf:Property".freeze property :toLocation, comment: %(A sub property of location. The final location of the object or the agent after the action.).freeze, domainIncludes: ["schema:ExerciseAction".freeze, "schema:InsertAction".freeze, "schema:MoveAction".freeze, "schema:TransferAction".freeze], @@ -24143,11 +24721,11 @@ module RDF::Vocab
  • Note 3: Note that you can use minValue and maxValue to indicate ranges.
  • ).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "tongueWeight".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :tool, comment: %(A sub property of instrument. An object used \(but not consumed\) when performing instructions or a direction.).freeze, @@ -24166,20 +24744,20 @@ module RDF::Vocab
  • Note 2: You can use minValue and maxValue to indicate ranges.
  • ).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:EngineSpecification".freeze, label: "torque".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :totalJobOpenings, comment: %(The number of positions open for this job posting. Use a positive integer. Do not use if the number of positions is unclear or not known.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2329".freeze, domainIncludes: "schema:JobPosting".freeze, label: "totalJobOpenings".freeze, rangeIncludes: "schema:Integer".freeze, "schema:category": "issue-2329".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2329".freeze, type: "rdf:Property".freeze property :totalPaymentDue, comment: %(The total amount due.).freeze, @@ -24209,27 +24787,27 @@ module RDF::Vocab type: "rdf:Property".freeze property :tourBookingPage, comment: %(A page providing information on how to book a tour of some Place, such as an Accommodation or ApartmentComplex in a real estate setting, as well as other kinds of tours as appropriate.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, domainIncludes: ["schema:Accommodation".freeze, "schema:ApartmentComplex".freeze, "schema:Place".freeze], label: "tourBookingPage".freeze, rangeIncludes: "schema:URL".freeze, "schema:category": "issue-2373".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, type: "rdf:Property".freeze property :touristType, comment: %(Attraction suitable for type\(s\) of tourist. eg. Children, visitors from a particular country, etc.).freeze, - "dc:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze], domainIncludes: ["schema:TouristAttraction".freeze, "schema:TouristDestination".freeze, "schema:TouristTrip".freeze], label: "touristType".freeze, rangeIncludes: ["schema:Audience".freeze, "schema:Text".freeze], "schema:category": "issue-1810".freeze, + "schema:source": ["http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it".freeze, "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism".freeze], type: "rdf:Property".freeze property :track, comment: %(A music recording \(track\)—usually a single song. If an ItemList is given, the list should contain items of type MusicRecording.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, domainIncludes: ["schema:MusicGroup".freeze, "schema:MusicPlaylist".freeze], label: "track".freeze, rangeIncludes: ["schema:ItemList".freeze, "schema:MusicRecording".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "rdf:Property".freeze property :trackingNumber, comment: %(Shipper tracking number.).freeze, @@ -24263,11 +24841,11 @@ module RDF::Vocab * Note 1: You can indicate additional information in the name of the QuantitativeValue node. * Note 2: You may also link to a QualitativeValue node that provides additional information using valueReference. * Note 3: Note that you can use minValue and maxValue to indicate ranges.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "trailerWeight".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :trainName, comment: %(The name of the train \(e.g. The Orient Express\).).freeze, @@ -24283,12 +24861,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :trainingSalary, comment: %(The estimated salary earned while in the program.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/2289".freeze, "https://github.com/schemaorg/schemaorg/issues/2460".freeze], domainIncludes: ["schema:EducationalOccupationalProgram".freeze, "schema:WorkBasedProgram".freeze], label: "trainingSalary".freeze, rangeIncludes: "schema:MonetaryAmountDistribution".freeze, "schema:category": ["issue-2289".freeze, "issue-2460".freeze], "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/2289".freeze, "https://github.com/schemaorg/schemaorg/issues/2460".freeze], type: "rdf:Property".freeze property :transFatContent, comment: %(The number of grams of trans fat.).freeze, @@ -24302,6 +24880,24 @@ module RDF::Vocab label: "transcript".freeze, rangeIncludes: "schema:Text".freeze, type: "rdf:Property".freeze + property :transitTime, + comment: %(The typical delay the order has been sent for delivery and the goods reach the final customer. Typical properties: minValue, maxValue, unitCode \(d for DAY\).).freeze, + domainIncludes: "schema:ShippingDeliveryTime".freeze, + label: "transitTime".freeze, + rangeIncludes: "schema:QuantitativeValue".freeze, + "schema:category": "issue-2506".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, + type: "rdf:Property".freeze + property :transitTimeLabel, + comment: %(Label to match an OfferShippingDetails with a DeliveryTimeSettings \(within the context of a shippingSettingsLink cross-reference\).).freeze, + domainIncludes: ["schema:DeliveryTimeSettings".freeze, "schema:OfferShippingDetails".freeze], + label: "transitTimeLabel".freeze, + rangeIncludes: "schema:Text".freeze, + "schema:category": "issue-2506".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2506".freeze, + type: "rdf:Property".freeze property :translationOfWork, comment: %(The work that this work has been translated from. e.g. 物种起源 is a translationOf “On the Origin of Species”).freeze, domainIncludes: "schema:CreativeWork".freeze, @@ -24325,12 +24921,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :travelBans, comment: %(Information about travel bans, e.g. in the context of a pandemic.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, domainIncludes: "schema:SpecialAnnouncement".freeze, label: "travelBans".freeze, rangeIncludes: ["schema:URL".freeze, "schema:WebContent".freeze], "schema:category": "issue-2490".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2490".freeze, type: "rdf:Property".freeze property :trialDesign, comment: %(Specifics about the trial design \(enumerated\).).freeze, @@ -24348,17 +24944,17 @@ module RDF::Vocab type: "rdf:Property".freeze property :typeOfBed, comment: %(The type of bed to which the BedDetail refers, i.e. the type of bed available in the quantity indicated by quantity.).freeze, - "dc:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, domainIncludes: "schema:BedDetails".freeze, label: "typeOfBed".freeze, rangeIncludes: ["schema:BedType".freeze, "schema:Text".freeze], + "schema:source": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology".freeze, type: "rdf:Property".freeze property :typeOfGood, comment: %(The product that this structured value is referring to.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:OwnershipInfo".freeze, "schema:TypeAndQuantityNode".freeze], label: "typeOfGood".freeze, rangeIncludes: ["schema:Product".freeze, "schema:Service".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :typicalAgeRange, comment: %(The typical expected age range, e.g. '7-9', '11-'.).freeze, @@ -24368,12 +24964,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :typicalCreditsPerTerm, comment: %(The number of credits or units a full-time student would be expected to take in 1 term however 'term' is defined by the institution.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, domainIncludes: "schema:EducationalOccupationalProgram".freeze, label: "typicalCreditsPerTerm".freeze, rangeIncludes: ["schema:Integer".freeze, "schema:StructuredValue".freeze], "schema:category": "issue-2419".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2419".freeze, type: "rdf:Property".freeze property :typicalTest, comment: %(A medical test typically performed given this condition.).freeze, @@ -24390,10 +24986,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :unitCode, comment: %(The unit of measurement given using the UN/CEFACT Common Code \(3 characters\) or a URL. Other codes than the UN/CEFACT Common Code may be used with a prefix followed by a colon.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:PropertyValue".freeze, "schema:QuantitativeValue".freeze, "schema:TypeAndQuantityNode".freeze, "schema:UnitPriceSpecification".freeze], label: "unitCode".freeze, rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :unitText, comment: %(A string or text indicating the unit of measurement. Useful if you cannot provide a standard unit code for @@ -24404,12 +25000,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :unnamedSourcesPolicy, comment: %(For an Organization \(typically a NewsMediaOrganization\), a statement about policy on use of unnamed sources and the decision process required.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], domainIncludes: ["schema:NewsMediaOrganization".freeze, "schema:Organization".freeze], label: "unnamedSourcesPolicy".freeze, rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze], "schema:category": "issue-1525".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], subPropertyOf: "schema:publishingPrinciples".freeze, type: "rdf:Property".freeze property :unsaturatedFatContent, @@ -24446,12 +25042,12 @@ module RDF::Vocab comment: %(The schema.org usageInfo property indicates further information about a CreativeWork. This property is applicable both to works that are freely available and to those that require payment or other transactions. It can reference additional information e.g. community expectations on preferred linking and citation conventions, as well as purchasing details. For something that can be commercially licensed, usageInfo can provide detailed, resource-specific information about licensing options.

    This property can be used alongside the license property which indicates license\(s\) applicable to some piece of content. The usageInfo property can provide information about other licensing options, e.g. acquiring commercial usage rights for an image that is also available under non-commercial creative commons licenses.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2454".freeze, domainIncludes: "schema:CreativeWork".freeze, label: "usageInfo".freeze, rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze], "schema:category": "issue-2454".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2454".freeze, type: "rdf:Property".freeze property :usedToDiagnose, comment: %(A condition the test is used to diagnose.).freeze, @@ -24475,42 +25071,42 @@ module RDF::Vocab type: "rdf:Property".freeze property :usesHealthPlanIdStandard, comment: %(The standard for interpreting thePlan ID. The preferred is "HIOS". See the Centers for Medicare & Medicaid Services for more details.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, domainIncludes: "schema:HealthInsurancePlan".freeze, label: "usesHealthPlanIdStandard".freeze, rangeIncludes: ["schema:Text".freeze, "schema:URL".freeze], "schema:category": "issue-1062".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1062".freeze, type: "rdf:Property".freeze property :validFor, comment: %(The duration of validity of a permit or similar thing.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, domainIncludes: ["schema:EducationalOccupationalCredential".freeze, "schema:Permit".freeze], label: "validFor".freeze, rangeIncludes: "schema:Duration".freeze, "schema:category": "issue-1779".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, type: "rdf:Property".freeze property :validFrom, comment: %(The date when the item becomes valid.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Demand".freeze, "schema:LocationFeatureSpecification".freeze, "schema:MonetaryAmount".freeze, "schema:Offer".freeze, "schema:OpeningHoursSpecification".freeze, "schema:Permit".freeze, "schema:PriceSpecification".freeze], label: "validFrom".freeze, rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :validIn, comment: %(The geographic area where a permit or similar thing is valid.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, domainIncludes: ["schema:EducationalOccupationalCredential".freeze, "schema:Permit".freeze], label: "validIn".freeze, rangeIncludes: "schema:AdministrativeArea".freeze, "schema:category": "issue-1779".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1779".freeze, type: "rdf:Property".freeze property :validThrough, comment: %(The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Demand".freeze, "schema:JobPosting".freeze, "schema:LocationFeatureSpecification".freeze, "schema:MonetaryAmount".freeze, "schema:Offer".freeze, "schema:OpeningHoursSpecification".freeze, "schema:PriceSpecification".freeze], label: "validThrough".freeze, rangeIncludes: ["schema:Date".freeze, "schema:DateTime".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :validUntil, comment: %(The date when the item is no longer valid.).freeze, @@ -24528,17 +25124,17 @@ module RDF::Vocab
  • Use '.' \(Unicode 'FULL STOP' \(U+002E\)\) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.
  • ).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:MonetaryAmount".freeze, "schema:PropertyValue".freeze, "schema:QuantitativeValue".freeze], label: "value".freeze, rangeIncludes: ["schema:Boolean".freeze, "schema:Number".freeze, "schema:StructuredValue".freeze, "schema:Text".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :valueAddedTaxIncluded, comment: %(Specifies whether the applicable value-added tax \(VAT\) is included in the price specification or not.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:PriceSpecification".freeze, label: "valueAddedTaxIncluded".freeze, rangeIncludes: "schema:Boolean".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :valueMaxLength, comment: %(Specifies the allowed range for number of characters in a literal value.).freeze, @@ -24566,10 +25162,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :valueReference, comment: %(A pointer to a secondary value that provides additional information on the original value, e.g. a reference temperature.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:PropertyValue".freeze, "schema:QualitativeValue".freeze, "schema:QuantitativeValue".freeze], label: "valueReference".freeze, rangeIncludes: ["schema:Enumeration".freeze, "schema:PropertyValue".freeze, "schema:QualitativeValue".freeze, "schema:QuantitativeValue".freeze, "schema:StructuredValue".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :valueRequired, comment: %(Whether the property must be filled in to complete the action. Default is false.).freeze, @@ -24579,12 +25175,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :variableMeasured, comment: %(The variableMeasured property can indicate \(repeated as necessary\) the variables that are measured in some dataset, either described as text or as pairs of identifier and description using PropertyValue.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1083".freeze, domainIncludes: "schema:Dataset".freeze, label: "variableMeasured".freeze, rangeIncludes: ["schema:PropertyValue".freeze, "schema:Text".freeze], "schema:category": "issue-1083".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1083".freeze, type: "rdf:Property".freeze property :variablesMeasured, comment: %(Originally named variablesMeasured, The variableMeasured property can indicate \(repeated as necessary\) the variables that are measured in some dataset, either described as text or as pairs of identifier and description using PropertyValue.).freeze, @@ -24605,77 +25201,77 @@ module RDF::Vocab type: "rdf:Property".freeze property :vatID, comment: %(The Value-added Tax ID of the organization or person.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Organization".freeze, "schema:Person".freeze], label: "vatID".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :vehicleConfiguration, comment: %(A short text indicating the configuration of the vehicle, e.g. '5dr hatchback ST 2.5 MT 225 hp' or 'limited edition'.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "vehicleConfiguration".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :vehicleEngine, comment: %(Information about the engine or engines of the vehicle.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "vehicleEngine".freeze, rangeIncludes: "schema:EngineSpecification".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :vehicleIdentificationNumber, comment: %(The Vehicle Identification Number \(VIN\) is a unique serial number used by the automotive industry to identify individual motor vehicles.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "vehicleIdentificationNumber".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, subPropertyOf: "schema:serialNumber".freeze, type: "rdf:Property".freeze property :vehicleInteriorColor, comment: %(The color or color combination of the interior of the vehicle.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "vehicleInteriorColor".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :vehicleInteriorType, comment: %(The type or material of the interior of the vehicle \(e.g. synthetic fabric, leather, wood, etc.\). While most interior types are characterized by the material used, an interior type can also be based on vehicle usage or target audience.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "vehicleInteriorType".freeze, rangeIncludes: "schema:Text".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :vehicleModelDate, comment: %(The release date of a vehicle model \(often used to differentiate versions of the same make and model\).).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "vehicleModelDate".freeze, rangeIncludes: "schema:Date".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :vehicleSeatingCapacity, comment: %(The number of passengers that can be seated in the vehicle, both in terms of the physical space available, and in terms of limitations set by law.

    Typical unit code\(s\): C62 for persons.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "vehicleSeatingCapacity".freeze, rangeIncludes: ["schema:Number".freeze, "schema:QuantitativeValue".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :vehicleSpecialUsage, comment: %(Indicates whether the vehicle has been used for special purposes, like commercial rental, driving school, or as a taxi. The legislation in many countries requires this information to be revealed when offering a car for sale.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "vehicleSpecialUsage".freeze, rangeIncludes: ["schema:CarUsageType".freeze, "schema:Text".freeze], "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :vehicleTransmission, comment: %(The type of component used for transmitting the power from a rotating power source to the wheels or other relevant component\(s\) \("gearbox" for cars\).).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "vehicleTransmission".freeze, rangeIncludes: ["schema:QualitativeValue".freeze, "schema:Text".freeze, "schema:URL".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :vendor, comment: %('vendor' is an earlier term for 'seller'.).freeze, @@ -24687,12 +25283,12 @@ module RDF::Vocab type: "rdf:Property".freeze property :verificationFactCheckingPolicy, comment: %(Disclosure about verification and fact-checking processes for a NewsMediaOrganization or other fact-checking Organization.).freeze, - "dc:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], domainIncludes: "schema:NewsMediaOrganization".freeze, label: "verificationFactCheckingPolicy".freeze, rangeIncludes: ["schema:CreativeWork".freeze, "schema:URL".freeze], "schema:category": "issue-1525".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["https://github.com/schemaorg/schemaorg/issues/1525".freeze, "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP".freeze], subPropertyOf: "schema:publishingPrinciples".freeze, type: "rdf:Property".freeze property :version, @@ -24727,11 +25323,11 @@ module RDF::Vocab type: "rdf:Property".freeze property :volumeNumber, comment: %(Identifies the volume of publication or multi-part work; for example, "iii" or "2".).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, domainIncludes: "schema:PublicationVolume".freeze, equivalentProperty: "bibo:volume".freeze, label: "volumeNumber".freeze, rangeIncludes: ["schema:Integer".freeze, "schema:Text".freeze], + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, subPropertyOf: "schema:position".freeze, type: "rdf:Property".freeze property :warning, @@ -24743,10 +25339,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :warranty, comment: %(The warranty promise\(s\) included in the offer.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Demand".freeze, "schema:Offer".freeze], label: "warranty".freeze, rangeIncludes: "schema:WarrantyPromise".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :warrantyPromise, comment: %(The warranty promise\(s\) included in the offer.).freeze, @@ -24757,10 +25353,10 @@ module RDF::Vocab type: "rdf:Property".freeze property :warrantyScope, comment: %(The scope of the warranty promise.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: "schema:WarrantyPromise".freeze, label: "warrantyScope".freeze, rangeIncludes: "schema:WarrantyScope".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :webCheckinTime, comment: %(The time when a passenger can check into the flight online.).freeze, @@ -24770,19 +25366,19 @@ module RDF::Vocab type: "rdf:Property".freeze property :webFeed, comment: %(The URL for a feed, e.g. associated with a podcast series, blog, or series of date-stamped updates. This is usually RSS or Atom.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/373".freeze, domainIncludes: ["schema:PodcastSeries".freeze, "schema:SpecialAnnouncement".freeze], label: "webFeed".freeze, rangeIncludes: ["schema:DataFeed".freeze, "schema:URL".freeze], "schema:category": "issue-373".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/373".freeze, type: "rdf:Property".freeze property :weight, comment: %(The weight of the product or person.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, domainIncludes: ["schema:Person".freeze, "schema:Product".freeze], label: "weight".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms".freeze, type: "rdf:Property".freeze property :weightTotal, comment: %(The permitted total weight of the loaded vehicle, including passengers and cargo and the weight of the empty vehicle.

    @@ -24795,21 +25391,21 @@ module RDF::Vocab
  • Note 3: Note that you can use minValue and maxValue to indicate ranges.
  • ).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "weightTotal".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :wheelbase, comment: %(The distance between the centers of the front and rear wheels.

    Typical unit code\(s\): CMT for centimeters, MTR for meters, INH for inches, FOT for foot/feet).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, domainIncludes: "schema:Vehicle".freeze, label: "wheelbase".freeze, rangeIncludes: "schema:QuantitativeValue".freeze, "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "rdf:Property".freeze property :width, comment: %(The width of the item.).freeze, @@ -24832,11 +25428,11 @@ module RDF::Vocab type: "rdf:Property".freeze property :workExample, comment: %(Example/instance/realization/derivation of the concept of this creative work. eg. The paperback edition, first edition, or eBook.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, domainIncludes: "schema:CreativeWork".freeze, label: "workExample".freeze, rangeIncludes: "schema:CreativeWork".freeze, "schema:inverseOf": "schema:exampleOfWork".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex".freeze, type: "rdf:Property".freeze property :workFeatured, comment: %(A work featured in some event, e.g. exhibited in an ExhibitionEvent. @@ -24901,20 +25497,20 @@ module RDF::Vocab type: "rdf:Property".freeze property :xpath, comment: %(An XPath, e.g. of a SpeakableSpecification or WebPageElement. In the latter case, multiple matches within a page can constitute a single conceptual "Web page element".).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1389".freeze, domainIncludes: ["schema:SpeakableSpecification".freeze, "schema:WebPageElement".freeze], label: "xpath".freeze, rangeIncludes: "schema:XPathType".freeze, "schema:category": "issue-1389".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1389".freeze, type: "rdf:Property".freeze property :yearBuilt, comment: %(The year an Accommodation was constructed. This corresponds to the YearBuilt field in RESO.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, domainIncludes: "schema:Accommodation".freeze, label: "yearBuilt".freeze, rangeIncludes: "schema:Number".freeze, "schema:category": "issue-2373".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2373".freeze, type: "rdf:Property".freeze property :yearlyRevenue, comment: %(The size of the business in annual revenue.).freeze, @@ -24957,13 +25553,13 @@ module RDF::Vocab type: "schema:PhysicalActivityCategory".freeze term :AlbumRelease, comment: %(AlbumRelease.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "AlbumRelease".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "schema:MusicAlbumReleaseType".freeze term :AllWheelDriveConfiguration, comment: %(All-wheel Drive is a transmission layout where the engine drives all four wheels.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "AllWheelDriveConfiguration".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "schema:DriveWheelConfigurationValue".freeze term :AnaerobicActivity, comment: %(Physical activity that is of high-intensity which utilizes the anaerobic metabolism of the body.).freeze, @@ -24986,18 +25582,18 @@ module RDF::Vocab type: "schema:BookFormatType".freeze term :AuthenticContent, comment: %(AuthenticMediaObject: An unaltered image that is presented in an accurate way.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, label: "AuthenticContent".freeze, "schema:category": "issue-2450".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, type: "schema:MediaManipulationRatingEnumeration".freeze term :AuthoritativeLegalValue, comment: %(Indicates that the publisher gives some special status to the publication of the document. \("The Queens Printer" version of a UK Act of Parliament, or the PDF version of a Directive published by the EU Office of Publications\). Something "Authoritative" is considered to be also OfficialLegalValue".).freeze, - "dc:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], exactMatch: "http://data.europa.eu/eli/ontology#LegalValue-authoritative".freeze, label: "AuthoritativeLegalValue".freeze, "schema:category": "issue-1156".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], type: "schema:LegalValueLevel".freeze term :Ayurvedic, comment: %(A system of medicine that originated in India over thousands of years and that focuses on integrating and balancing the body, mind, and spirit.).freeze, @@ -25011,34 +25607,34 @@ module RDF::Vocab type: "schema:PhysicalActivityCategory".freeze term :BasicIncome, comment: %(BasicIncome: this is a benefit for basic income.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "BasicIncome".freeze, "schema:category": "issue-2534".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, type: "schema:GovernmentBenefitsType".freeze term :BenefitsHealthAspect, comment: %(Content about the benefits and advantages of usage or utilization of topic.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "BenefitsHealthAspect".freeze, "schema:category": "issue-2374".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, type: "schema:HealthAspectEnumeration".freeze term :BroadcastRelease, comment: %(BroadcastRelease.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "BroadcastRelease".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "schema:MusicAlbumReleaseType".freeze term :BusinessSupport, comment: %(BusinessSupport: this is a benefit for supporting businesses.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "BusinessSupport".freeze, "schema:category": "issue-2534".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, type: "schema:GovernmentBenefitsType".freeze term :CDFormat, comment: %(CDFormat.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "CDFormat".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "schema:MusicReleaseFormatType".freeze term :CT, comment: %(X-ray computed tomography imaging.).freeze, @@ -25062,16 +25658,23 @@ module RDF::Vocab type: "schema:MedicalObservationalStudyDesign".freeze term :CassetteFormat, comment: %(CassetteFormat.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "CassetteFormat".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "schema:MusicReleaseFormatType".freeze term :CausesHealthAspect, comment: %(Information about the causes and main actions that gave rise to the topic.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "CausesHealthAspect".freeze, "schema:category": "issue-2374".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, type: "schema:HealthAspectEnumeration".freeze + term :CharitableIncorporatedOrganization, + comment: %(CharitableIncorporatedOrganization: Non-profit type referring to a Charitable Incorporated Organization \(UK\).).freeze, + label: "CharitableIncorporatedOrganization".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:UKNonprofitType".freeze term :Chiropractic, comment: %(A system of medicine focused on the relationship between the body's structure, mainly the spine, and its functioning.).freeze, label: "Chiropractic".freeze, @@ -25103,8 +25706,8 @@ module RDF::Vocab type: "schema:MedicalSpecialty".freeze term :CompilationAlbum, comment: %(CompilationAlbum.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "CompilationAlbum".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "schema:MusicAlbumProductionType".freeze term :Completed, comment: %(Completed.).freeze, @@ -25117,10 +25720,10 @@ module RDF::Vocab type: "schema:ActionStatusType".freeze term :ContagiousnessHealthAspect, comment: %(Content about contagion mechanisms and contagiousness information over the topic.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "ContagiousnessHealthAspect".freeze, "schema:category": "issue-2374".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, type: "schema:HealthAspectEnumeration".freeze term :CrossSectional, comment: %(Studies carried out on pre-existing data \(usually from 'snapshot' surveys\), such as that collected by the Census Bureau. Sometimes called Prevalence Studies.).freeze, @@ -25129,13 +25732,13 @@ module RDF::Vocab type: "schema:MedicalObservationalStudyDesign".freeze term :DJMixAlbum, comment: %(DJMixAlbum.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "DJMixAlbum".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "schema:MusicAlbumProductionType".freeze term :DVDFormat, comment: %(DVDFormat.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "DVDFormat".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "schema:MusicReleaseFormatType".freeze term :DamagedCondition, comment: %(Indicates that the item is damaged.).freeze, @@ -25144,16 +25747,16 @@ module RDF::Vocab term :DefinitiveLegalValue, comment: %(Indicates a document for which the text is conclusively what the law says and is legally binding. \(e.g. The digitally signed version of an Official Journal.\) Something "Definitive" is considered to be also AuthoritativeLegalValue.).freeze, - "dc:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], exactMatch: "http://data.europa.eu/eli/ontology#LegalValue-definitive".freeze, label: "DefinitiveLegalValue".freeze, "schema:category": "issue-1156".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], type: "schema:LegalValueLevel".freeze term :DemoAlbum, comment: %(DemoAlbum.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "DemoAlbum".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "schema:MusicAlbumProductionType".freeze term :Dentistry, comment: %(A branch of medicine that is involved in the dental care.).freeze, @@ -25189,20 +25792,20 @@ module RDF::Vocab type: "schema:MedicalSpecialty".freeze term :DigitalAudioTapeFormat, comment: %(DigitalAudioTapeFormat.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "DigitalAudioTapeFormat".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "schema:MusicReleaseFormatType".freeze term :DigitalFormat, comment: %(DigitalFormat.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "DigitalFormat".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "schema:MusicReleaseFormatType".freeze term :DisabilitySupport, comment: %(DisabilitySupport: this is a benefit for disability support.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "DisabilitySupport".freeze, "schema:category": "issue-2534".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, type: "schema:GovernmentBenefitsType".freeze term :Discontinued, comment: %(Indicates that the item has been discontinued.).freeze, @@ -25215,9 +25818,9 @@ module RDF::Vocab type: "schema:MedicalTrialDesign".freeze term :DrivingSchoolVehicleUsage, comment: %(Indicates the usage of the vehicle for driving school.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "DrivingSchoolVehicleUsage".freeze, "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "schema:CarUsageType".freeze term :EBook, comment: %(Book format: Ebook.).freeze, @@ -25225,8 +25828,8 @@ module RDF::Vocab type: "schema:BookFormatType".freeze term :EPRelease, comment: %(EPRelease.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "EPRelease".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "schema:MusicAlbumReleaseType".freeze term :Ear, comment: %(Ear function assessment with clinical examination.).freeze, @@ -25286,10 +25889,10 @@ module RDF::Vocab type: "schema:MedicalEvidenceLevel".freeze term :ExchangeRefund, comment: %(A ExchangeRefund ...).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "ExchangeRefund".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, type: "schema:RefundTypeEnumeration".freeze term :Eye, comment: %(Eye or ophtalmological function assessment with clinical examination.).freeze, @@ -25345,8 +25948,8 @@ module RDF::Vocab type: "schema:PhysicalActivityCategory".freeze term :FourWheelDriveConfiguration, comment: %(Four-wheel drive is a transmission layout where the engine primarily drives two wheels with a part-time four-wheel drive capability.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "FourWheelDriveConfiguration".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "schema:DriveWheelConfigurationValue".freeze term :Friday, comment: %(The day of the week between Thursday and Saturday.).freeze, @@ -25355,15 +25958,15 @@ module RDF::Vocab type: "schema:DayOfWeek".freeze term :FrontWheelDriveConfiguration, comment: %(Front-wheel drive is a transmission layout where the engine drives the front wheels.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "FrontWheelDriveConfiguration".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "schema:DriveWheelConfigurationValue".freeze term :FullRefund, comment: %(A FullRefund ...).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "FullRefund".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, type: "schema:RefundTypeEnumeration".freeze term :Gastroenterologic, comment: %(A specific branch of medical science that pertains to diagnosis and treatment of disorders of digestive system.).freeze, @@ -25421,10 +26024,10 @@ module RDF::Vocab type: "schema:PhysicalExam".freeze term :HealthCare, comment: %(HealthCare: this is a benefit for health care.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "HealthCare".freeze, "schema:category": "issue-2534".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, type: "schema:GovernmentBenefitsType".freeze term :HearingImpairedSupported, comment: %(Uses devices to support users with hearing impairments.).freeze, @@ -25446,18 +26049,18 @@ module RDF::Vocab type: "schema:MedicineSystem".freeze term :HowOrWhereHealthAspect, comment: %(Information about how or where to find a topic. Also may contain location data that can be used for where to look for help if the topic is observed.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "HowOrWhereHealthAspect".freeze, "schema:category": "issue-2374".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, type: "schema:HealthAspectEnumeration".freeze term :InForce, comment: %(Indicates that a legislation is in force.).freeze, - "dc:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], exactMatch: "http://data.europa.eu/eli/ontology#InForce-inForce".freeze, label: "InForce".freeze, "schema:category": "issue-1156".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], type: "schema:LegalForceStatus".freeze term :InStock, comment: %(Indicates that the item is in stock.).freeze, @@ -25500,13 +26103,13 @@ module RDF::Vocab type: "schema:MedicalSpecialty".freeze term :LaserDiscFormat, comment: %(LaserDiscFormat.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "LaserDiscFormat".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "schema:MusicReleaseFormatType".freeze term :LeftHandDriving, comment: %(The steering position is on the left side of the vehicle \(viewed from the main direction of driving\).).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "LeftHandDriving".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "schema:SteeringPositionValue".freeze term :LeisureTimeActivity, comment: %(Any physical activity engaged in for recreational purposes. Examples may include ballroom dancing, roller skating, canoeing, fishing, etc.).freeze, @@ -25517,17 +26120,24 @@ module RDF::Vocab comment: %(Indicates that the item has limited availability.).freeze, label: "LimitedAvailability".freeze, type: "schema:ItemAvailability".freeze + term :LimitedByGuaranteeCharity, + comment: %(LimitedByGuaranteeCharity: Non-profit type referring to a charitable company that is limited by guarantee \(UK\).).freeze, + label: "LimitedByGuaranteeCharity".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:UKNonprofitType".freeze term :LiveAlbum, comment: %(LiveAlbum.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "LiveAlbum".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "schema:MusicAlbumProductionType".freeze term :LivingWithHealthAspect, comment: %(Information about coping or life related to the topic.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "LivingWithHealthAspect".freeze, "schema:category": "issue-2374".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, type: "schema:HealthAspectEnumeration".freeze term :Longitudinal, comment: %(Unlike cross-sectional studies, longitudinal studies track the same people, and therefore the differences observed in those people are less likely to be the result of cultural differences across generations. Longitudinal studies are also used in medicine to uncover predictors of certain diseases.).freeze, @@ -25566,10 +26176,10 @@ module RDF::Vocab type: "schema:GenderType".freeze term :MayTreatHealthAspect, comment: %(Related topics may be treated by a Topic.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "MayTreatHealthAspect".freeze, "schema:category": "issue-2374".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, type: "schema:HealthAspectEnumeration".freeze term :MedicalResearcher, comment: %(Medical researchers.).freeze, @@ -25578,31 +26188,31 @@ module RDF::Vocab type: "schema:MedicalAudience".freeze term :MerchantReturnFiniteReturnWindow, comment: %(MerchantReturnFiniteReturnWindow: there is a finite window for product returns.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "MerchantReturnFiniteReturnWindow".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, type: "schema:MerchantReturnEnumeration".freeze term :MerchantReturnNotPermitted, comment: %(MerchantReturnNotPermitted: product returns are not permitted.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "MerchantReturnNotPermitted".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, type: "schema:MerchantReturnEnumeration".freeze term :MerchantReturnUnlimitedWindow, comment: %(MerchantReturnUnlimitedWindow: there is an unlimited window for product returns.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "MerchantReturnUnlimitedWindow".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, type: "schema:MerchantReturnEnumeration".freeze term :MerchantReturnUnspecified, comment: %(MerchantReturnUnspecified: a product return policy is not specified here.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "MerchantReturnUnspecified".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, type: "schema:MerchantReturnEnumeration".freeze term :Midwifery, comment: %(A nurse-like health profession that deals with pregnancy, childbirth, and the postpartum period \(including care of the newborn\), besides sexual and reproductive health of women throughout their lives.).freeze, @@ -25612,29 +26222,29 @@ module RDF::Vocab type: "schema:MedicalSpecialty".freeze term :MisconceptionsHealthAspect, comment: %(Content about common misconceptions and myths that are related to a topic.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "MisconceptionsHealthAspect".freeze, "schema:category": "issue-2374".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, type: "schema:HealthAspectEnumeration".freeze term :MissingContext, comment: %(MissingContext: ...).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, label: "MissingContext".freeze, "schema:category": "issue-2450".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2450".freeze, type: "schema:MediaManipulationRatingEnumeration".freeze term :MixedEventAttendanceMode, comment: %(MixedEventAttendanceMode - an event that is conducted as a combination of both offline and online modes.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, label: "MixedEventAttendanceMode".freeze, "schema:category": "issue-1842".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, type: "schema:EventAttendanceModeEnumeration".freeze term :MixtapeAlbum, comment: %(MixtapeAlbum.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "MixtapeAlbum".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "schema:MusicAlbumProductionType".freeze term :Monday, comment: %(The day of the week between Sunday and Tuesday.).freeze, @@ -25684,6 +26294,272 @@ module RDF::Vocab label: "NoninvasiveProcedure".freeze, "schema:isPartOf": "http://health-lifesci.schema.org".freeze, type: "schema:MedicalProcedureType".freeze + term :Nonprofit501a, + comment: %(Nonprofit501a: Non-profit type referring to Farmers’ Cooperative Associations.).freeze, + label: "Nonprofit501a".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c1, + comment: %(Nonprofit501c1: Non-profit type referring to Corporations Organized Under Act of Congress, including Federal Credit Unions and National Farm Loan Associations.).freeze, + label: "Nonprofit501c1".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c10, + comment: %(Nonprofit501c10: Non-profit type referring to Domestic Fraternal Societies and Associations.).freeze, + label: "Nonprofit501c10".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c11, + comment: %(Nonprofit501c11: Non-profit type referring to Teachers' Retirement Fund Associations.).freeze, + label: "Nonprofit501c11".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c12, + comment: %(Nonprofit501c12: Non-profit type referring to Benevolent Life Insurance Associations, Mutual Ditch or Irrigation Companies, Mutual or Cooperative Telephone Companies.).freeze, + label: "Nonprofit501c12".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c13, + comment: %(Nonprofit501c13: Non-profit type referring to Cemetery Companies.).freeze, + label: "Nonprofit501c13".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c14, + comment: %(Nonprofit501c14: Non-profit type referring to State-Chartered Credit Unions, Mutual Reserve Funds.).freeze, + label: "Nonprofit501c14".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c15, + comment: %(Nonprofit501c15: Non-profit type referring to Mutual Insurance Companies or Associations.).freeze, + label: "Nonprofit501c15".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c16, + comment: %(Nonprofit501c16: Non-profit type referring to Cooperative Organizations to Finance Crop Operations.).freeze, + label: "Nonprofit501c16".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c17, + comment: %(Nonprofit501c17: Non-profit type referring to Supplemental Unemployment Benefit Trusts.).freeze, + label: "Nonprofit501c17".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c18, + comment: %(Nonprofit501c18: Non-profit type referring to Employee Funded Pension Trust \(created before 25 June 1959\).).freeze, + label: "Nonprofit501c18".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c19, + comment: %(Nonprofit501c19: Non-profit type referring to Post or Organization of Past or Present Members of the Armed Forces.).freeze, + label: "Nonprofit501c19".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c2, + comment: %(Nonprofit501c2: Non-profit type referring to Title-holding Corporations for Exempt Organizations.).freeze, + label: "Nonprofit501c2".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c20, + comment: %(Nonprofit501c20: Non-profit type referring to Group Legal Services Plan Organizations.).freeze, + label: "Nonprofit501c20".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c21, + comment: %(Nonprofit501c21: Non-profit type referring to Black Lung Benefit Trusts.).freeze, + label: "Nonprofit501c21".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c22, + comment: %(Nonprofit501c22: Non-profit type referring to Withdrawal Liability Payment Funds.).freeze, + label: "Nonprofit501c22".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c23, + comment: %(Nonprofit501c23: Non-profit type referring to Veterans Organizations.).freeze, + label: "Nonprofit501c23".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c24, + comment: %(Nonprofit501c24: Non-profit type referring to Section 4049 ERISA Trusts.).freeze, + label: "Nonprofit501c24".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c25, + comment: %(Nonprofit501c25: Non-profit type referring to Real Property Title-Holding Corporations or Trusts with Multiple Parents.).freeze, + label: "Nonprofit501c25".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c26, + comment: %(Nonprofit501c26: Non-profit type referring to State-Sponsored Organizations Providing Health Coverage for High-Risk Individuals.).freeze, + label: "Nonprofit501c26".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c27, + comment: %(Nonprofit501c27: Non-profit type referring to State-Sponsored Workers' Compensation Reinsurance Organizations.).freeze, + label: "Nonprofit501c27".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c28, + comment: %(Nonprofit501c28: Non-profit type referring to National Railroad Retirement Investment Trusts.).freeze, + label: "Nonprofit501c28".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c3, + comment: %(Nonprofit501c3: Non-profit type referring to Religious, Educational, Charitable, Scientific, Literary, Testing for Public Safety, to Foster National or International Amateur Sports Competition, or Prevention of Cruelty to Children or Animals Organizations.).freeze, + label: "Nonprofit501c3".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c4, + comment: %(Nonprofit501c4: Non-profit type referring to Civic Leagues, Social Welfare Organizations, and Local Associations of Employees.).freeze, + label: "Nonprofit501c4".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c5, + comment: %(Nonprofit501c5: Non-profit type referring to Labor, Agricultural and Horticultural Organizations.).freeze, + label: "Nonprofit501c5".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c6, + comment: %(Nonprofit501c6: Non-profit type referring to Business Leagues, Chambers of Commerce, Real Estate Boards.).freeze, + label: "Nonprofit501c6".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c7, + comment: %(Nonprofit501c7: Non-profit type referring to Social and Recreational Clubs.).freeze, + label: "Nonprofit501c7".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c8, + comment: %(Nonprofit501c8: Non-profit type referring to Fraternal Beneficiary Societies and Associations.).freeze, + label: "Nonprofit501c8".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501c9, + comment: %(Nonprofit501c9: Non-profit type referring to Voluntary Employee Beneficiary Associations.).freeze, + label: "Nonprofit501c9".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501d, + comment: %(Nonprofit501d: Non-profit type referring to Religious and Apostolic Associations.).freeze, + label: "Nonprofit501d".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501e, + comment: %(Nonprofit501e: Non-profit type referring to Cooperative Hospital Service Organizations.).freeze, + label: "Nonprofit501e".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501f, + comment: %(Nonprofit501f: Non-profit type referring to Cooperative Service Organizations.).freeze, + label: "Nonprofit501f".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501k, + comment: %(Nonprofit501k: Non-profit type referring to Child Care Organizations.).freeze, + label: "Nonprofit501k".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501n, + comment: %(Nonprofit501n: Non-profit type referring to Charitable Risk Pools.).freeze, + label: "Nonprofit501n".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit501q, + comment: %(Nonprofit501q: Non-profit type referring to Credit Counseling Organizations.).freeze, + label: "Nonprofit501q".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :Nonprofit527, + comment: %(Nonprofit527: Non-profit type referring to Political organizations.).freeze, + label: "Nonprofit527".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:USNonprofitType".freeze + term :NonprofitANBI, + comment: %(NonprofitANBI: Non-profit type referring to a Public Benefit Organization \(NL\).).freeze, + label: "NonprofitANBI".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:NLNonprofitType".freeze + term :NonprofitSBBI, + comment: %(NonprofitSBBI: Non-profit type referring to a Social Interest Promoting Institution \(NL\).).freeze, + label: "NonprofitSBBI".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:NLNonprofitType".freeze term :Nose, comment: %(Nose function assessment with clinical examination.).freeze, label: "Nose".freeze, @@ -25691,11 +26567,11 @@ module RDF::Vocab type: "schema:PhysicalExam".freeze term :NotInForce, comment: %(Indicates that a legislation is currently not in force.).freeze, - "dc:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], exactMatch: "http://data.europa.eu/eli/ontology#InForce-notInForce".freeze, label: "NotInForce".freeze, "schema:category": "issue-1156".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], type: "schema:LegalForceStatus".freeze term :NotYetRecruiting, comment: %(Not yet recruiting.).freeze, @@ -25731,18 +26607,18 @@ module RDF::Vocab type: "schema:PhysicalActivityCategory".freeze term :OfficialLegalValue, comment: %(All the documents published by an official publisher should have at least the legal value level "OfficialLegalValue". This indicates that the document was published by an organisation with the public task of making it available \(e.g. a consolidated version of a EU directive published by the EU Office of Publications\).).freeze, - "dc:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], exactMatch: "http://data.europa.eu/eli/ontology#LegalValue-official".freeze, label: "OfficialLegalValue".freeze, "schema:category": "issue-1156".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], type: "schema:LegalValueLevel".freeze term :OfflineEventAttendanceMode, comment: %(OfflineEventAttendanceMode - an event that is primarily conducted offline.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, label: "OfflineEventAttendanceMode".freeze, "schema:category": "issue-1842".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, type: "schema:EventAttendanceModeEnumeration".freeze term :OfflinePermanently, comment: %(Game server status: OfflinePermanently. Server is offline and not available.).freeze, @@ -25764,10 +26640,10 @@ module RDF::Vocab type: "schema:MedicalSpecialty".freeze term :OneTimePayments, comment: %(OneTimePayments: this is a benefit for one-time payments for individuals.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "OneTimePayments".freeze, "schema:category": "issue-2534".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, type: "schema:GovernmentBenefitsType".freeze term :Online, comment: %(Game server status: Online. Server is available.).freeze, @@ -25775,10 +26651,10 @@ module RDF::Vocab type: "schema:GameServerStatus".freeze term :OnlineEventAttendanceMode, comment: %(OnlineEventAttendanceMode - an event that is primarily conducted online.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, label: "OnlineEventAttendanceMode".freeze, "schema:category": "issue-1842".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/1842".freeze, type: "schema:EventAttendanceModeEnumeration".freeze term :OnlineFull, comment: %(Game server status: OnlineFull. Server is online but unavailable. The maximum number of players has reached.).freeze, @@ -25833,10 +26709,10 @@ module RDF::Vocab type: "schema:OrderStatus".freeze term :OriginalShippingFees, comment: %(OriginalShippingFees ...).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "OriginalShippingFees".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, type: "schema:ReturnFeesEnumeration".freeze term :Osteopathic, comment: %(A system of medicine focused on promoting the body's innate ability to heal itself.).freeze, @@ -25855,10 +26731,10 @@ module RDF::Vocab type: "schema:ItemAvailability".freeze term :OverviewHealthAspect, comment: %(Overview of the content. Contains a summarized view of the topic with the most relevant information for an introduction.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "OverviewHealthAspect".freeze, "schema:category": "issue-2374".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, type: "schema:HealthAspectEnumeration".freeze term :PET, comment: %(Positron emission tomography imaging.).freeze, @@ -25867,10 +26743,10 @@ module RDF::Vocab type: "schema:MedicalImagingTechnique".freeze term :PaidLeave, comment: %(PaidLeave: this is a benefit for paid leave.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "PaidLeave".freeze, "schema:category": "issue-2534".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, type: "schema:GovernmentBenefitsType".freeze term :Paperback, comment: %(Book format: Paperback.).freeze, @@ -25878,10 +26754,10 @@ module RDF::Vocab type: "schema:BookFormatType".freeze term :ParentalSupport, comment: %(ParentalSupport: this is a benefit for parental support.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "ParentalSupport".freeze, "schema:category": "issue-2534".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, type: "schema:GovernmentBenefitsType".freeze term :ParkingMap, comment: %(A parking map.).freeze, @@ -25889,11 +26765,11 @@ module RDF::Vocab type: "schema:MapCategoryType".freeze term :PartiallyInForce, comment: %(Indicates that parts of the legislation are in force, and parts are not.).freeze, - "dc:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], exactMatch: "http://data.europa.eu/eli/ontology#InForce-partiallyInForce".freeze, label: "PartiallyInForce".freeze, "schema:category": "issue-1156".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], type: "schema:LegalForceStatus".freeze term :Pathology, comment: %(A specific branch of medical science that is concerned with the study of the cause, origin and nature of a disease state, including its consequences as a result of manifestation of the disease. In clinical care, the term is used to designate a branch of medicine using laboratory tests to diagnose and determine the prognostic significance of illness.).freeze, @@ -25902,10 +26778,10 @@ module RDF::Vocab type: "schema:MedicalSpecialty".freeze term :PatientExperienceHealthAspect, comment: %(Content about the real life experience of patients or people that have lived a similar experience about the topic. May be forums, topics, Q-and-A and related material.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "PatientExperienceHealthAspect".freeze, "schema:category": "issue-2374".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, type: "schema:HealthAspectEnumeration".freeze term :PaymentAutomaticallyApplied, comment: %(An automatic payment system is in place and will be used.).freeze, @@ -25985,10 +26861,10 @@ module RDF::Vocab type: "schema:DrugPrescriptionStatus".freeze term :PreventionHealthAspect, comment: %(Information about actions or measures that can be taken to avoid getting the topic or reaching a critical situation related to the topic.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "PreventionHealthAspect".freeze, "schema:category": "issue-2374".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, type: "schema:HealthAspectEnumeration".freeze term :PrimaryCare, comment: %(The medical care by a physician, or other health-care professional, who is the patient's first contact with the health-care system and who may recommend a specialist if necessary.).freeze, @@ -25998,42 +26874,42 @@ module RDF::Vocab type: "schema:MedicalSpecialty".freeze term :ProductReturnFiniteReturnWindow, comment: %(ProductReturnFiniteReturnWindow: there is a finite window for product returns.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "ProductReturnFiniteReturnWindow".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://attic.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, "schema:supersededBy": "schema:MerchantReturnFiniteReturnWindow".freeze, type: "schema:ProductReturnEnumeration".freeze term :ProductReturnNotPermitted, comment: %(ProductReturnNotPermitted: product returns are not permitted.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "ProductReturnNotPermitted".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://attic.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, "schema:supersededBy": "schema:MerchantReturnNotPermitted".freeze, type: "schema:ProductReturnEnumeration".freeze term :ProductReturnUnlimitedWindow, comment: %(ProductReturnUnlimitedWindow: there is an unlimited window for product returns.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "ProductReturnUnlimitedWindow".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://attic.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, "schema:supersededBy": "schema:MerchantReturnUnlimitedWindow".freeze, type: "schema:ProductReturnEnumeration".freeze term :ProductReturnUnspecified, comment: %(ProductReturnUnspecified: a product return policy is not specified here.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "ProductReturnUnspecified".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://attic.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, "schema:supersededBy": "schema:MerchantReturnUnspecified".freeze, type: "schema:ProductReturnEnumeration".freeze term :PrognosisHealthAspect, comment: %(Typical progression and happenings of life course of the topic.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "PrognosisHealthAspect".freeze, "schema:category": "issue-2374".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, type: "schema:HealthAspectEnumeration".freeze term :Psychiatric, comment: %(A specific branch of medical science that is concerned with the study, treatment, and prevention of mental illness, using both medical and psychological therapies.).freeze, @@ -26049,8 +26925,8 @@ module RDF::Vocab type: "schema:MedicalSpecialty".freeze term :PublicHolidays, comment: %(This stands for any day that is a public holiday; it is a placeholder for all official public holidays in some particular location. While not technically a "day of the week", it can be used with OpeningHoursSpecification. In the context of an opening hours specification it can be used to indicate opening hours on public holidays, overriding general opening hours for the day of the week on which a public holiday occurs.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, label: "PublicHolidays".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass".freeze, type: "schema:DayOfWeek".freeze term :Pulmonary, comment: %(A specific branch of medical science that pertains to the study of the respiratory system and its respective disease states.).freeze, @@ -26073,8 +26949,8 @@ module RDF::Vocab type: "schema:DigitalDocumentPermissionType".freeze term :RearWheelDriveConfiguration, comment: %(Real-wheel drive is a transmission layout where the engine drives the rear wheels.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "RearWheelDriveConfiguration".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "schema:DriveWheelConfigurationValue".freeze term :Recruiting, comment: %(Recruiting participants.).freeze, @@ -26097,15 +26973,15 @@ module RDF::Vocab type: "schema:DrugCostCategory".freeze term :RelatedTopicsHealthAspect, comment: %(Other prominent or relevant topics tied to the main topic.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "RelatedTopicsHealthAspect".freeze, "schema:category": "issue-2374".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, type: "schema:HealthAspectEnumeration".freeze term :RemixAlbum, comment: %(RemixAlbum.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "RemixAlbum".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "schema:MusicAlbumProductionType".freeze term :Renal, comment: %(A specific branch of medical science that pertains to the study of the kidneys and its respective disease states.).freeze, @@ -26114,9 +26990,9 @@ module RDF::Vocab type: "schema:MedicalSpecialty".freeze term :RentalVehicleUsage, comment: %(Indicates the usage of the vehicle as a rental car.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "RentalVehicleUsage".freeze, "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "schema:CarUsageType".freeze term :Researcher, comment: %(Researchers.).freeze, @@ -26146,10 +27022,10 @@ module RDF::Vocab type: "schema:MedicalSpecialty".freeze term :RestockingFees, comment: %(RestockingFees ...).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "RestockingFees".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, type: "schema:ReturnFeesEnumeration".freeze term :ResultsAvailable, comment: %(Results are available.).freeze, @@ -26168,10 +27044,10 @@ module RDF::Vocab type: "schema:DrugCostCategory".freeze term :ReturnShippingFees, comment: %(ReturnShippingFees ...).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "ReturnShippingFees".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, type: "schema:ReturnFeesEnumeration".freeze term :Rheumatologic, comment: %(A specific branch of medical science that deals with the study and treatment of rheumatic, autoimmune or joint diseases.).freeze, @@ -26180,15 +27056,15 @@ module RDF::Vocab type: "schema:MedicalSpecialty".freeze term :RightHandDriving, comment: %(The steering position is on the right side of the vehicle \(viewed from the main direction of driving\).).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "RightHandDriving".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "schema:SteeringPositionValue".freeze term :RisksOrComplicationsHealthAspect, comment: %(Information about the risk factors and possible complications that may follow a topic.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "RisksOrComplicationsHealthAspect".freeze, "schema:category": "issue-2374".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, type: "schema:HealthAspectEnumeration".freeze term :RsvpResponseMaybe, comment: %(The invitee may or may not attend.).freeze, @@ -26209,10 +27085,10 @@ module RDF::Vocab type: "schema:DayOfWeek".freeze term :ScreeningHealthAspect, comment: %(Content about how to screen or further filter a topic.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "ScreeningHealthAspect".freeze, "schema:category": "issue-2374".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, type: "schema:HealthAspectEnumeration".freeze term :SeatingMap, comment: %(A seating map.).freeze, @@ -26220,24 +27096,24 @@ module RDF::Vocab type: "schema:MapCategoryType".freeze term :SeeDoctorHealthAspect, comment: %(Information about questions that may be asked, when to see a professional, measures before seeing a doctor or content about the first consultation.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "SeeDoctorHealthAspect".freeze, "schema:category": "issue-2374".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, type: "schema:HealthAspectEnumeration".freeze term :SelfCareHealthAspect, comment: %(Self care actions or measures that can be taken to sooth, health or avoid a topic. This may be carried at home and can be carried/managed by the person itself.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "SelfCareHealthAspect".freeze, "schema:category": "issue-2374".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, type: "schema:HealthAspectEnumeration".freeze term :SideEffectsHealthAspect, comment: %(Side effects that can be observed from the usage of the topic.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "SideEffectsHealthAspect".freeze, "schema:category": "issue-2374".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, type: "schema:HealthAspectEnumeration".freeze term :SingleBlindedTrial, comment: %(A trial design in which the researcher knows which treatment the patient was randomly assigned to but the patient does not.).freeze, @@ -26255,8 +27131,8 @@ module RDF::Vocab type: "schema:GamePlayMode".freeze term :SingleRelease, comment: %(SingleRelease.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "SingleRelease".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "schema:MusicAlbumReleaseType".freeze term :Skin, comment: %(Skin assessment with clinical examination.).freeze, @@ -26269,8 +27145,8 @@ module RDF::Vocab type: "schema:ItemAvailability".freeze term :SoundtrackAlbum, comment: %(SoundtrackAlbum.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "SoundtrackAlbum".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "schema:MusicAlbumProductionType".freeze term :SpeechPathology, comment: %(The scientific study and treatment of defects, disorders, and malfunctions of speech and voice, as stuttering, lisping, or lalling, and of language disturbances, as aphasia or delayed language acquisition.).freeze, @@ -26279,22 +27155,22 @@ module RDF::Vocab type: "schema:MedicalSpecialty".freeze term :SpokenWordAlbum, comment: %(SpokenWordAlbum.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "SpokenWordAlbum".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "schema:MusicAlbumProductionType".freeze term :StagesHealthAspect, comment: %(Stages that can be observed from a topic.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "StagesHealthAspect".freeze, "schema:category": "issue-2374".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, type: "schema:HealthAspectEnumeration".freeze term :StoreCreditRefund, comment: %(A StoreCreditRefund ...).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, label: "StoreCreditRefund".freeze, "schema:category": "issue-2288".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2288".freeze, type: "schema:RefundTypeEnumeration".freeze term :StrengthTraining, comment: %(Physical activity that is engaged in to improve muscle and bone strength. Also referred to as resistance training.).freeze, @@ -26303,8 +27179,8 @@ module RDF::Vocab type: "schema:PhysicalActivityCategory".freeze term :StudioAlbum, comment: %(StudioAlbum.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "StudioAlbum".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "schema:MusicAlbumProductionType".freeze term :Sunday, comment: %(The day of the week between Saturday and Monday.).freeze, @@ -26323,16 +27199,16 @@ module RDF::Vocab type: "schema:MedicalStudyStatus".freeze term :SymptomsHealthAspect, comment: %(Symptoms or related symptoms of a Topic.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "SymptomsHealthAspect".freeze, "schema:category": "issue-2374".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, type: "schema:HealthAspectEnumeration".freeze term :TaxiVehicleUsage, comment: %(Indicates the usage of the car as a taxi.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, label: "TaxiVehicleUsage".freeze, "schema:isPartOf": "http://auto.schema.org".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group".freeze, type: "schema:CarUsageType".freeze term :Terminated, comment: %(Terminated.).freeze, @@ -26374,10 +27250,10 @@ module RDF::Vocab type: "schema:MapCategoryType".freeze term :TreatmentsHealthAspect, comment: %(Treatments or related therapies for a Topic.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "TreatmentsHealthAspect".freeze, "schema:category": "issue-2374".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, type: "schema:HealthAspectEnumeration".freeze term :TripleBlindedTrial, comment: %(A trial design in which neither the researcher, the person administering the therapy nor the patient knows the details of the treatment the patient was randomly assigned to.).freeze, @@ -26395,11 +27271,18 @@ module RDF::Vocab type: "schema:DayOfWeek".freeze term :TypesHealthAspect, comment: %(Categorization and other types related to a topic.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "TypesHealthAspect".freeze, "schema:category": "issue-2374".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, type: "schema:HealthAspectEnumeration".freeze + term :UKTrust, + comment: %(UKTrust: Non-profit type referring to a UK trust.).freeze, + label: "UKTrust".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:UKNonprofitType".freeze term :Ultrasound, comment: %(Ultrasound imaging.).freeze, label: "Ultrasound".freeze, @@ -26407,18 +27290,25 @@ module RDF::Vocab type: "schema:MedicalImagingTechnique".freeze term :UnemploymentSupport, comment: %(UnemploymentSupport: this is a benefit for unemployment support.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, label: "UnemploymentSupport".freeze, "schema:category": "issue-2534".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2534".freeze, type: "schema:GovernmentBenefitsType".freeze + term :UnincorporatedAssociationCharity, + comment: %(UnincorporatedAssociationCharity: Non-profit type referring to a charitable company that is not incorporated \(UK\).).freeze, + label: "UnincorporatedAssociationCharity".freeze, + "schema:category": "issue-2543".freeze, + "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2543".freeze, + type: "schema:UKNonprofitType".freeze term :UnofficialLegalValue, comment: %(Indicates that a document has no particular or special standing \(e.g. a republication of a law by a private publisher\).).freeze, - "dc:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], exactMatch: "http://data.europa.eu/eli/ontology#LegalValue-unofficial".freeze, label: "UnofficialLegalValue".freeze, "schema:category": "issue-1156".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": ["http://publications.europa.eu/mdr/eli/index.html".freeze, "https://github.com/schemaorg/schemaorg/issues/1156".freeze], type: "schema:LegalValueLevel".freeze term :Urologic, comment: %(A specific branch of medical science that is concerned with the diagnosis and treatment of diseases pertaining to the urinary tract and the urogenital system.).freeze, @@ -26427,10 +27317,10 @@ module RDF::Vocab type: "schema:MedicalSpecialty".freeze term :UsageOrScheduleHealthAspect, comment: %(Content about how, when, frequency and dosage of a topic.).freeze, - "dc:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, label: "UsageOrScheduleHealthAspect".freeze, "schema:category": "issue-2374".freeze, "schema:isPartOf": "http://pending.schema.org".freeze, + "schema:source": "https://github.com/schemaorg/schemaorg/issues/2374".freeze, type: "schema:HealthAspectEnumeration".freeze term :UsedCondition, comment: %(Indicates that the item is used.).freeze, @@ -26450,8 +27340,8 @@ module RDF::Vocab type: "schema:MapCategoryType".freeze term :VinylFormat, comment: %(VinylFormat.).freeze, - "dc:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, label: "VinylFormat".freeze, + "schema:source": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ".freeze, type: "schema:MusicReleaseFormatType".freeze term :Wednesday, comment: %(The day of the week between Tuesday and Thursday.).freeze, diff --git a/lib/rdf/vocab/sh.rb b/lib/rdf/vocab/sh.rb index 730c264..71bdbec 100644 --- a/lib/rdf/vocab/sh.rb +++ b/lib/rdf/vocab/sh.rb @@ -305,7 +305,7 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :jsLibraryURL # - # # Outlines how human-readable labels of instances of the associated Parameterizable shall be produced. The values can contain `{?paramName}` as placeholders for the actual values of the given parameter. + # # Outlines how human-readable labels of instances of the associated Parameterizable shall be produced. The values can contain {?paramName} as placeholders for the actual values of the given parameter. # # @return [RDF::Vocabulary::Term] # attr_reader :labelTemplate # diff --git a/lib/rdf/vocab/skos.rb b/lib/rdf/vocab/skos.rb index d733dae..8240096 100644 --- a/lib/rdf/vocab/skos.rb +++ b/lib/rdf/vocab/skos.rb @@ -23,9 +23,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :OrderedCollection # - # # The range of skos:altLabel is the class of RDF plain literals. - # # # # skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties. + # # + # # The range of skos:altLabel is the class of RDF plain literals. # # @return [RDF::Vocabulary::Term] # attr_reader :altLabel # diff --git a/lib/rdf/vocab/xkos.rb b/lib/rdf/vocab/xkos.rb index 2ad4bf0..0efef60 100644 --- a/lib/rdf/vocab/xkos.rb +++ b/lib/rdf/vocab/xkos.rb @@ -9,10 +9,10 @@ module RDF::Vocab # # XKOS: an SKOS extension for representing statistical classifications # # # # This ontology is based on work initiated at Dagstuhl Schloss in September 2011 - # # @version Version 1.0.3 - 2016-03-15 - # # @version Version 1.1 - 2016-03-20 # # @version Version 1.0.2 - 2016-03-15 + # # @version Version 1.1 - 2016-03-20 # # @version Version 1.0.1 - 2014-11-26 + # # @version Version 1.0.3 - 2016-03-15 # class XKOS < RDF::StrictVocabulary # # @return [RDF::Vocabulary::Term] # attr_reader :ClassificationLevel @@ -101,9 +101,9 @@ module RDF::Vocab # # @return [RDF::Vocabulary::Term] # attr_reader :maxLength # - # # immediate successor in the sequence - # # # # successeur immédiat dans la séquence + # # + # # immediate successor in the sequence # # @return [RDF::Vocabulary::Term] # attr_reader :next # From 6cd2ad425061a552271ce61924976b64af6609f1 Mon Sep 17 00:00:00 2001 From: Gregg Kellogg Date: Fri, 10 Jul 2020 13:46:13 -0700 Subject: [PATCH 6/6] Version 3.1.6. --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 3ad0595..9cec716 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.1.5 +3.1.6